Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
die_coolen_jungs
our_own_cloud_project
Commits
f6298cb7
Commit
f6298cb7
authored
12 years ago
by
Robin Appelman
Browse files
Options
Downloads
Patches
Plain Diff
add hasKey for XCache backend
parent
cb941996
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
lib/cache/xcache.php
+4
-0
4 additions, 0 deletions
lib/cache/xcache.php
tests/lib/cache.php
+5
-0
5 additions, 0 deletions
tests/lib/cache.php
with
9 additions
and
0 deletions
lib/cache/xcache.php
+
4
−
0
View file @
f6298cb7
...
...
@@ -27,6 +27,10 @@ class OC_Cache_XCache{
}
}
public
function
hasKey
(
$key
)
{
return
xcache_isset
(
$this
->
getNamespace
()
.
$key
);
}
public
function
remove
(
$key
)
{
return
xcache_unset
(
$this
->
getNamespace
()
.
$key
);
}
...
...
This diff is collapsed.
Click to expand it.
tests/lib/cache.php
+
5
−
0
View file @
f6298cb7
...
...
@@ -18,9 +18,11 @@ abstract class Test_Cache extends UnitTestCase {
function
testSimple
(){
$this
->
assertNull
(
$this
->
instance
->
get
(
'value1'
));
$this
->
assertFalse
(
$this
->
instance
->
hasKey
(
'value1'
));
$value
=
'foobar'
;
$this
->
instance
->
set
(
'value1'
,
$value
);
$this
->
assertTrue
(
$this
->
instance
->
hasKey
(
'value1'
));
$received
=
$this
->
instance
->
get
(
'value1'
);
$this
->
assertEqual
(
$value
,
$received
,
'Value recieved from cache not equal to the original'
);
$value
=
'ipsum lorum'
;
...
...
@@ -31,9 +33,12 @@ abstract class Test_Cache extends UnitTestCase {
$value2
=
'foobar'
;
$this
->
instance
->
set
(
'value2'
,
$value2
);
$received2
=
$this
->
instance
->
get
(
'value2'
);
$this
->
assertTrue
(
$this
->
instance
->
hasKey
(
'value1'
));
$this
->
assertTrue
(
$this
->
instance
->
hasKey
(
'value2'
));
$this
->
assertEqual
(
$value
,
$received
,
'Value changed while setting other variable'
);
$this
->
assertEqual
(
$value2
,
$received2
,
'Seccond value not equal to original'
);
$this
->
assertFalse
(
$this
->
instance
->
hasKey
(
'not_set'
));
$this
->
assertNull
(
$this
->
instance
->
get
(
'not_set'
),
'Unset value not equal to null'
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment