Changeset 1402
- Timestamp:
- 08/17/09 15:50:18 (13 years ago)
- Location:
- plugins/memCache
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
plugins/memCache/_define.php
r1390 r1402 16 16 /* Description*/ "Blog pages cache using memcached", 17 17 /* Author */ "Alain Vagner, Pep and contributors", 18 /* Version */ '1.0-beta 3',18 /* Version */ '1.0-beta4', 19 19 /* Permissions */ null 20 20 ); -
plugins/memCache/class.cache.php
r1390 r1402 50 50 { 51 51 $val = array($mtime,$content_type,$content); 52 if (!$this->mc->set($this->memcache_key,serialize($val),false, 0)) {52 if (!$this->mc->set($this->memcache_key,serialize($val),false,604800)) { 53 53 throw new Exception('cmpCache: unable to set a value'); 54 54 }
Note: See TracChangeset
for help on using the changeset viewer.