Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
syncEnrollments
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Yeray Santana Hualde
syncEnrollments
Commits
31106a92
Commit
31106a92
authored
Apr 29, 2012
by
Taylor Otwell
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Support implicit sectioned caching using :: syntax.
parent
4d2ecdbf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
69 additions
and
4 deletions
+69
-4
memcached.php
laravel/cache/drivers/memcached.php
+69
-4
No files found.
laravel/cache/drivers/memcached.php
View file @
31106a92
...
...
@@ -16,6 +16,20 @@ class Memcached extends Driver implements Sectionable {
*/
protected
$key
;
/**
* Indicates that section caching is implicit based on keys.
*
* @var bool
*/
public
$implicit
=
true
;
/**
* The implicit section key delimiter.
*
* @var string
*/
public
$delimiter
=
'::'
;
/**
* Create a new Memcached cache driver instance.
*
...
...
@@ -47,7 +61,13 @@ class Memcached extends Driver implements Sectionable {
*/
protected
function
retrieve
(
$key
)
{
if
((
$cache
=
$this
->
memcache
->
get
(
$this
->
key
.
$key
))
!==
false
)
if
(
$this
->
sectionable
(
$key
))
{
list
(
$section
,
$key
)
=
$this
->
parse
(
$key
);
return
$this
->
get_from_section
(
$section
,
$key
);
}
elseif
((
$cache
=
$this
->
memcache
->
get
(
$this
->
key
.
$key
))
!==
false
)
{
return
$cache
;
}
...
...
@@ -81,7 +101,16 @@ class Memcached extends Driver implements Sectionable {
*/
public
function
put
(
$key
,
$value
,
$minutes
)
{
$this
->
memcache
->
set
(
$this
->
key
.
$key
,
$value
,
$minutes
*
60
);
if
(
$this
->
sectionable
(
$key
))
{
list
(
$section
,
$key
)
=
$this
->
parse
(
$key
);
return
$this
->
put_in_section
(
$section
,
$key
,
$value
,
$minutes
);
}
else
{
$this
->
memcache
->
set
(
$this
->
key
.
$key
,
$value
,
$minutes
*
60
);
}
}
/**
...
...
@@ -107,7 +136,16 @@ class Memcached extends Driver implements Sectionable {
*/
public
function
forever
(
$key
,
$value
)
{
return
$this
->
put
(
$key
,
$value
,
0
);
if
(
$this
->
sectionable
(
$key
))
{
list
(
$section
,
$key
)
=
$this
->
parse
(
$key
);
return
$this
->
forever_in_section
(
$section
,
$key
,
$value
);
}
else
{
return
$this
->
put
(
$key
,
$value
,
0
);
}
}
/**
...
...
@@ -160,7 +198,23 @@ class Memcached extends Driver implements Sectionable {
*/
public
function
forget
(
$key
)
{
$this
->
memcache
->
delete
(
$this
->
key
.
$key
);
if
(
$this
->
sectionable
(
$key
))
{
list
(
$section
,
$key
)
=
$this
->
parse
(
$key
);
if
(
$key
==
'*'
)
{
$this
->
forget_section
(
$section
);
}
else
{
$this
->
forget_in_section
(
$section
,
$key
);
}
}
else
{
$this
->
memcache
->
delete
(
$this
->
key
.
$key
);
}
}
/**
...
...
@@ -223,6 +277,17 @@ class Memcached extends Driver implements Sectionable {
return
$section
.
'#'
.
$this
->
section_id
(
$section
)
.
'#'
.
$key
;
}
/**
* Indicates if a key is sectionable.
*
* @param string $key
* @return bool
*/
protected
function
sectionable
(
$key
)
{
return
$this
->
implicit
and
$this
->
sectioned
(
$key
);
}
/**
* Determine if a key is sectioned.
*
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment