21287 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 140 Views |
-
[SS3.1] Memcached

16 February 2013 at 9:58pm
Hey, is there're a way to use one memcached server for a few websites?
Here's my config:SS_Cache::add_backend('primary_memcached','Memcached',array(
'host' => 'localhost',
'port' => 11211,
'persistent' => true,
'weight' => 1,
'timeout' => 5,
'retry_interval' => 15,
'status' => true,
'failure_callback' => ''
));
SS_Cache::pick_backend('primary_memcached', 'any', 10);
The problem is that websites have the same cache_id_prefix for a different projects -
Re: [SS3.1] Memcached

18 February 2013 at 1:44pm
Hi Tony,
Unfortunately that is not possible at the moment. Your best option is probably to run multiple memchache Daemons.
Sorry I can't help more.
-
Re: [SS3.1] Memcached

20 February 2013 at 4:21am
Thank you for your answer Van.
In that way I suggest to change line #212 at the framework/cache/Cache.php from "$basicOptions = array('cache_id_prefix' => $for);" to "$basicOptions = array('cache_id_prefix' => md5($for.BASE_PATH));"
| 140 Views | ||
|
Page:
1
|
Go to Top |


