Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
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
PSDI Army
yii2
Commits
06235cd1
Commit
06235cd1
authored
Jun 24, 2014
by
Qiang Xue
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixes #2558: Enhanced support for memcached by adding…
Fixes #2558: Enhanced support for memcached by adding `yii\caching\MemCache::persistentId` and `yii\caching\MemCache::options`
parent
91caf681
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
103 additions
and
42 deletions
+103
-42
CHANGELOG.md
framework/CHANGELOG.md
+1
-0
MemCache.php
framework/caching/MemCache.php
+102
-42
No files found.
framework/CHANGELOG.md
View file @
06235cd1
...
@@ -59,6 +59,7 @@ Yii Framework 2 Change Log
...
@@ -59,6 +59,7 @@ Yii Framework 2 Change Log
-
Bug: Fixed Object of class Imagick could not be converted to string in CaptchaAction (eXprojects, cebe)
-
Bug: Fixed Object of class Imagick could not be converted to string in CaptchaAction (eXprojects, cebe)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
-
Enh #2264:
`CookieCollection::has()`
will return false for expired or removed cookies (qiangxue)
-
Enh #2435:
`yii\db\IntegrityException`
is now thrown on database integrity errors instead of general
`yii\db\Exception`
(samdark)
-
Enh #2435:
`yii\db\IntegrityException`
is now thrown on database integrity errors instead of general
`yii\db\Exception`
(samdark)
-
Enh #2558: Enhanced support for memcached by adding
`yii\caching\MemCache::persistentId`
and
`yii\caching\MemCache::options`
(qiangxue)
-
Enh #2837: Error page now shows arguments in stack trace method calls (samdark)
-
Enh #2837: Error page now shows arguments in stack trace method calls (samdark)
-
Enh #2906: Added support for using conditional comments for js and css files registered through asset bundles and Html helper (exromany, qiangxue)
-
Enh #2906: Added support for using conditional comments for js and css files registered through asset bundles and Html helper (exromany, qiangxue)
-
Enh #2942: Added truncate and truncateWord methods (Alex-Code, samdark)
-
Enh #2942: Added truncate and truncateWord methods (Alex-Code, samdark)
...
...
framework/caching/MemCache.php
View file @
06235cd1
...
@@ -70,6 +70,19 @@ class MemCache extends Cache
...
@@ -70,6 +70,19 @@ class MemCache extends Cache
*/
*/
public
$useMemcached
=
false
;
public
$useMemcached
=
false
;
/**
/**
* @var string an ID that identifies a Memcached instance. This property is used only when [[useMemcached]] is true.
* By default the Memcached instances are destroyed at the end of the request. To create an instance that
* persists between requests, you may specify a unique ID for the instance. All instances created with the
* same ID will share the same connection.
* @see http://ca2.php.net/manual/en/memcached.construct.php
*/
public
$persistentId
;
/**
* @var array options for Memcached. This property is used only when [[useMemcached]] is true.
* @see http://ca2.php.net/manual/en/memcached.setoptions.php
*/
public
$options
;
/**
* @var \Memcache|\Memcached the Memcache instance
* @var \Memcache|\Memcached the Memcache instance
*/
*/
private
$_cache
=
null
;
private
$_cache
=
null
;
...
@@ -86,50 +99,88 @@ class MemCache extends Cache
...
@@ -86,50 +99,88 @@ class MemCache extends Cache
public
function
init
()
public
function
init
()
{
{
parent
::
init
();
parent
::
init
();
$servers
=
$this
->
getServers
();
$this
->
addServers
(
$this
->
getMemcache
(),
$this
->
getServers
());
$cache
=
$this
->
getMemCache
();
}
/**
* @param \Memcache|\Memcached $cache
* @param array $servers
* @throws InvalidConfigException
*/
protected
function
addServers
(
$cache
,
$servers
)
{
if
(
empty
(
$servers
))
{
if
(
empty
(
$servers
))
{
$cache
->
addServer
(
'127.0.0.1'
,
11211
);
$servers
=
[
new
MemCacheServer
([
'host'
=>
'127.0.0.1'
,
'port'
=>
11211
,
])];
}
else
{
}
else
{
if
(
!
$this
->
useMemcached
)
{
// different version of memcache may have different number of parameters for the addServer method.
$class
=
new
\ReflectionClass
(
$cache
);
$paramCount
=
$class
->
getMethod
(
'addServer'
)
->
getNumberOfParameters
();
}
foreach
(
$servers
as
$server
)
{
foreach
(
$servers
as
$server
)
{
if
(
$server
->
host
===
null
)
{
if
(
$server
->
host
===
null
)
{
throw
new
InvalidConfigException
(
"The 'host' property must be specified for every memcache server."
);
throw
new
InvalidConfigException
(
"The 'host' property must be specified for every memcache server."
);
}
}
if
(
$this
->
useMemcached
)
{
}
$cache
->
addServer
(
$server
->
host
,
$server
->
port
,
$server
->
weight
);
}
}
else
{
if
(
$this
->
useMemcached
)
{
// $timeout is used for memcache versions that do not have timeoutms parameter
$this
->
addMemcachedServers
(
$cache
,
$servers
);
$timeout
=
(
int
)
(
$server
->
timeout
/
1000
)
+
((
$server
->
timeout
%
1000
>
0
)
?
1
:
0
);
}
else
{
if
(
$paramCount
===
9
)
{
$this
->
addMemcacheServers
(
$cache
,
$servers
);
$cache
->
addServer
(
}
$server
->
host
,
}
$server
->
port
,
$server
->
persistent
,
/**
$server
->
weight
,
* @param \Memcached $cache
$timeout
,
* @param array $servers
$server
->
retryInterval
,
*/
$server
->
status
,
protected
function
addMemcachedServers
(
$cache
,
$servers
)
$server
->
failureCallback
,
{
$server
->
timeout
$existingServers
=
[];
);
if
(
$this
->
persistentId
!==
null
)
{
}
else
{
foreach
(
$cache
->
getServerList
()
as
$s
)
{
$cache
->
addServer
(
$existingServers
[
$s
[
'host'
]
.
':'
.
$s
[
'port'
]]
=
true
;
$server
->
host
,
}
$server
->
port
,
}
$server
->
persistent
,
foreach
(
$servers
as
$server
)
{
$server
->
weight
,
if
(
empty
(
$existingServers
)
||
!
isset
(
$existingServers
[
$server
->
host
.
':'
.
$server
->
port
]))
{
$timeout
,
$cache
->
addServer
(
$server
->
host
,
$server
->
port
,
$server
->
weight
);
$server
->
retryInterval
,
}
$server
->
status
,
}
$server
->
failureCallback
}
);
}
/**
}
* @param \Memcache $cache
* @param array $servers
*/
protected
function
addMemcacheServers
(
$cache
,
$servers
)
{
$class
=
new
\ReflectionClass
(
$cache
);
$paramCount
=
$class
->
getMethod
(
'addServer'
)
->
getNumberOfParameters
();
foreach
(
$servers
as
$server
)
{
// $timeout is used for memcache versions that do not have $timeoutms parameter
$timeout
=
(
int
)
(
$server
->
timeout
/
1000
)
+
((
$server
->
timeout
%
1000
>
0
)
?
1
:
0
);
if
(
$paramCount
===
9
)
{
$cache
->
addServer
(
$server
->
host
,
$server
->
port
,
$server
->
persistent
,
$server
->
weight
,
$timeout
,
$server
->
retryInterval
,
$server
->
status
,
$server
->
failureCallback
,
$server
->
timeout
);
}
else
{
$cache
->
addServer
(
$server
->
host
,
$server
->
port
,
$server
->
persistent
,
$server
->
weight
,
$timeout
,
$server
->
retryInterval
,
$server
->
status
,
$server
->
failureCallback
);
}
}
}
}
}
}
...
@@ -146,14 +197,22 @@ class MemCache extends Cache
...
@@ -146,14 +197,22 @@ class MemCache extends Cache
if
(
!
extension_loaded
(
$extension
))
{
if
(
!
extension_loaded
(
$extension
))
{
throw
new
InvalidConfigException
(
"MemCache requires PHP
$extension
extension to be loaded."
);
throw
new
InvalidConfigException
(
"MemCache requires PHP
$extension
extension to be loaded."
);
}
}
$this
->
_cache
=
$this
->
useMemcached
?
new
\Memcached
:
new
\Memcache
;
if
(
$this
->
useMemcached
)
{
$this
->
_cache
=
$this
->
persistentId
!==
null
?
new
\Memcached
(
$this
->
persistentId
)
:
new
\Memcached
;
if
(
!
empty
(
$this
->
options
))
{
$this
->
_cache
->
setOptions
(
$this
->
options
);
}
}
else
{
$this
->
_cache
=
new
\Memcache
;
}
}
}
return
$this
->
_cache
;
return
$this
->
_cache
;
}
}
/**
/**
* Returns the memcache server configurations.
* Returns the memcache
or memcached
server configurations.
* @return MemCacheServer[] list of memcache server configurations.
* @return MemCacheServer[] list of memcache server configurations.
*/
*/
public
function
getServers
()
public
function
getServers
()
...
@@ -162,9 +221,10 @@ class MemCache extends Cache
...
@@ -162,9 +221,10 @@ class MemCache extends Cache
}
}
/**
/**
* @param array $config list of memcache server configurations. Each element must be an array
* @param array $config list of memcache
or memcached
server configurations. Each element must be an array
* with the following keys: host, port, persistent, weight, timeout, retryInterval, status.
* with the following keys: host, port, persistent, weight, timeout, retryInterval, status.
* @see http://www.php.net/manual/en/function.Memcache-addServer.php
* @see http://php.net/manual/en/memcache.addserver.php
* @see http://php.net/manual/en/memcached.addserver.php
*/
*/
public
function
setServers
(
$config
)
public
function
setServers
(
$config
)
{
{
...
...
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