2.13.7.7. Setting up Memcached in Webasyst
Customization
For settings Memcached in Webasyst create in the directory wa-config
file cache.php
with the following content:
<?php return array( 'default' => array( 'type' => 'memcached', 'namespace' => 'wa', 'servers' => array( array( 'host' => '/home/' . explode("/",__DIR__)[2] . '/.system/memcache/socket', 'port' => 0, ), ) ) );
In the line with the parameter namespace
insteadof wa
specify your arbitrary identifier required to avoid conflicts when using Memcached by several sites at once.