You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Oct 28, 2020. It is now read-only.
Working with this bundle on its release 2.1, I had issue with mcrouter or any working cluster of memcache servers. I fixed this problem by a simple hack in Lsw\MemcacheBundle\Cache\LoggingMemcache at line 145 in get method :
$result = parent::get($_key);
This method has these two pointer parameters "&$flags=null" and "&$cas=null" which are may be usefull in set method but completely not used to get values. These two parameters won't allow to get value with any cluster or memache proxy.
Thanks for this project.
The text was updated successfully, but these errors were encountered:
Hi,
Working with this bundle on its release 2.1, I had issue with mcrouter or any working cluster of memcache servers. I fixed this problem by a simple hack in Lsw\MemcacheBundle\Cache\LoggingMemcache at line 145 in get method :
$result = parent::get($_key);
This method has these two pointer parameters "&$flags=null" and "&$cas=null" which are may be usefull in set method but completely not used to get values. These two parameters won't allow to get value with any cluster or memache proxy.
Thanks for this project.
The text was updated successfully, but these errors were encountered: