Provide example configuration on using memcache.

This commit is contained in:
Andrew Ruthven 2022-12-16 23:58:24 +13:00 committed by Andrew Ruthven
parent 0c2f55cd66
commit 5db0622d65

View File

@ -60,6 +60,19 @@ $c->pg_connect[] = "dbname=davical user=davical_app";
*/
// $c->skip_bad_event_on_import = true;
/**
* Use memcache to cache various things. This is an array, allowing you to
* specify multiple memcache servers. Each each item in array is the server,
* port and priority. The priority is optional. For example, you can use the
* following to add two differnet servers, the second having a priority of 10.
*
* $c->memcache_servers[] = '127.0.0.1,11211';
* $c->memcache_servers[] = '127.0.0.2,11211,10';
*
* Default: none (memcache is not used)
*/
// $c->memcache_servers[] = '127.0.0.1,11211';
/***************************************************************************
* *