1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
| <?xml version="1.0" encoding="UTF-8"?> <modification> <id>Replace opencart default cache with Memcache</id> <version>1.0.0</version> <vqmver>2.5.1</vqmver> <author>hezhiqiang</author> <file name="system/library/cache.php"> <operation> <search position="replace" offset="50"><![CDATA[ <?php ]]></search> <add><![CDATA[<?php /** * OpenCart Ukrainian Community * * LICENSE * * This source file is subject to the GNU General Public License, Version 3 * It is also available through the world-wide-web at this URL: * http://www.gnu.org/copyleft/gpl.html * If you did not receive a copy of the license and are unable to * obtain it through the world-wide-web, please send an email * * @category OpenCart * @package OCU Memcached * @copyright Copyright (c) 2011 created by UncleAndy, maintained by Eugene Lifescale for OpenCart Ukrainian Community (http://opencart-ukraine.tumblr.com) * @license http://www.gnu.org/copyleft/gpl.html GNU General Public License, Version 3 */ final class Cache { private $expire; private $memcache; private $ismemcache = false; public function __construct($exp = 3600) { $this->expire = $exp; if (CACHE_DRIVER == 'memcached') { $mc = new Memcache; if ($mc->pconnect(MEMCACHE_HOSTNAME, MEMCACHE_PORT)) { $this->memcache = $mc; $this->ismemcache = true; }; }; $files = glob(DIR_CACHE . 'cache.*'); if ($files) { foreach ($files as $file) { $time = substr(strrchr($file, '.'), 1); if ($time < time()) { if (file_exists($file)) { @unlink($file); } } } } } public function get($key) { if ((CACHE_DRIVER == 'memcached') && $this->ismemcache) { return ($this->memcache->get(MEMCACHE_NAMESPACE . $key, 0)); } else { $files = glob(DIR_CACHE . 'cache.' . $key . '.*'); if ($files) { foreach ($files as $file) { $cache = ''; $handle = fopen($file, 'r'); if ($handle) { $cache = fread($handle, filesize($file)); fclose($handle); } return unserialize($cache); } } } } public function set($key, $value) { if ((CACHE_DRIVER == 'memcached') && $this->ismemcache) { $this->memcache->set(MEMCACHE_NAMESPACE . $key, $value, MEMCACHE_COMPRESSED, $this->expire); } else { $this->delete($key); $file = DIR_CACHE . 'cache.' . $key . '.' . (time() + $this->expire); $handle = fopen($file, 'w'); fwrite($handle, serialize($value)); fclose($handle); }; } public function delete($key) { if ((CACHE_DRIVER == 'memcached') && $this->ismemcache) { $this->memcache->delete(MEMCACHE_NAMESPACE . $key, 0); } else { $files = glob(DIR_CACHE . 'cache.' . $key . '.*'); if ($files) { foreach ($files as $file) { if (file_exists($file)) { @unlink($file); clearstatcache(); } } } } } } ]]></add> </operation> </file> </modification>
|