123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122 |
- <?php
-
-
-
- namespace Doctrine\Common\Cache;
-
- use \Memcache;
-
-
- class MemcacheCache extends CacheProvider
- {
-
-
- private $memcache;
-
-
-
- public function setMemcache(Memcache $memcache)
- {
- $this->memcache = $memcache;
- }
-
-
-
- public function getMemcache()
- {
- return $this->memcache;
- }
-
-
-
- protected function doFetch($id)
- {
- return $this->memcache->get($id);
- }
-
-
-
- protected function doContains($id)
- {
- return (bool) $this->memcache->get($id);
- }
-
-
-
- protected function doSave($id, $data, $lifeTime = 0)
- {
- if ($lifeTime > 30 * 24 * 3600) {
- $lifeTime = time() + $lifeTime;
- }
- return $this->memcache->set($id, $data, 0, (int) $lifeTime);
- }
-
-
-
- protected function doDelete($id)
- {
- return $this->memcache->delete($id);
- }
-
-
-
- protected function doFlush()
- {
- return $this->memcache->flush();
- }
-
-
-
- protected function doGetStats()
- {
- $stats = $this->memcache->getStats();
- return array(
- Cache::STATS_HITS => $stats['get_hits'],
- Cache::STATS_MISSES => $stats['get_misses'],
- Cache::STATS_UPTIME => $stats['uptime'],
- Cache::STATS_MEMORY_USAGE => $stats['bytes'],
- Cache::STATS_MEMORY_AVAILIABLE => $stats['limit_maxbytes'],
- );
- }
- }
|