diff options
author | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-11-04 15:15:52 +0000 |
---|---|---|
committer | marcus <marcus@36083f99-b078-4883-b0ff-0f9b5a30f544> | 2008-11-04 15:15:52 +0000 |
commit | 4ba5e14afd2d366b9fcdbdce76c7bc7ad6fbf31a (patch) | |
tree | 886480a6d3a6b32d3d9e12d420c6df6291d9034a | |
parent | 253505d11d7602a07527e575076d0185e82110ec (diff) | |
download | elgg-4ba5e14afd2d366b9fcdbdce76c7bc7ad6fbf31a.tar.gz elgg-4ba5e14afd2d366b9fcdbdce76c7bc7ad6fbf31a.tar.bz2 |
Refs #514
git-svn-id: https://code.elgg.org/elgg/trunk@2393 36083f99-b078-4883-b0ff-0f9b5a30f544
-rw-r--r-- | engine/settings.example.php | 15 |
1 files changed, 14 insertions, 1 deletions
diff --git a/engine/settings.example.php b/engine/settings.example.php index f27690f57..b022a52af 100644 --- a/engine/settings.example.php +++ b/engine/settings.example.php @@ -93,7 +93,20 @@ * Note that the array keys must be numeric and consecutive, i.e., they start
* at 0, the next one must be at 1, etc.
*/
-
+ + + /** + * Memcache setup (optional) + * This is where you may optionally set up memcache. + * + * Requirements: + * 1) One or more memcache servers (http://www.danga.com/memcached/) + * 2) PHP memcache wrapper (http://uk.php.net/manual/en/memcache.setup.php) + */ + //$CONFIG->memcache_servers = array ( + // array('server1', 11211), + // array('server2', 11211) + //);
/**
* Url - I am not sure if this will be here ?
|