diff options
author | Evan Prodromou <evan@controlyourself.ca> | 2008-09-26 16:01:02 -0400 |
---|---|---|
committer | Evan Prodromou <evan@controlyourself.ca> | 2008-09-26 16:01:02 -0400 |
commit | 82084ab74c4050620d69a90cbacc33383a0b7e5f (patch) | |
tree | 5a62b659c5acf66152f2987787e6cf38afc5eca5 /lib/util.php | |
parent | 15c0fb7abd2a364886729d416231cac8ae0ef004 (diff) |
move memcache connections to util.php
darcs-hash:20080926200102-5ed1f-debbc18981424d7724277ac82e5fbfd5e797090e.gz
Diffstat (limited to 'lib/util.php')
-rw-r--r-- | lib/util.php | 22 |
1 files changed, 21 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php index 621fdc137..20fe4ced6 100644 --- a/lib/util.php +++ b/lib/util.php @@ -1727,4 +1727,24 @@ function common_message_form($content, $user, $to) { common_element_end('p'); common_element_end('form'); -}
\ No newline at end of file +} + +function common_memcache() { + static $cache = NULL; + if (!common_config('memcached', 'enabled')) { + return NULL; + } else { + if (!$cache) { + $cache = new Memcache(); + $servers = common_config('memcached', 'server'); + if (is_array($servers)) { + foreach($servers as $server) { + $cache->addServer($server); + } + } else { + $cache->addServer($servers); + } + } + return $cache; + } +} |