在我们的应用程序中,我们有一些与此非常相似的东西:
$cache = App_Cache::getInstance()->newObject(300);
$sig = App_Cache::getCacheName(sha1($sql));
$res = $cache->load($sig);
if ($res === false) {
$res = $db->fetchAll($sql);
$cache->save($res, $sig);
}
目前的问题是我们最终每次都会创建一个 Zend_Cache 的新对象,并且对于每个请求,这最终可能会被调用 300 多次。
class App_Cache {
protected static $_instance = null;
public static $enabled = true;
protected $frontend = null;
protected $backend = null;
protected $lifetime = null;
public function __construct() { }
public static function getInstance() {
if (is_null(self::$_instance))
self::$_instance = new self();
return self::$_instance;
}
public function newObject($lifetime = 0) {
return Zend_Cache::factory('Core','Memcached',$this->getFrontend($lifetime),$this->getBackend());
}
public static function getCacheName($suffix) {
$suffix = str_replace(array("-","'","@",":"), "_",$suffix);
return "x{$suffix}";
}
在Magento中,他们似乎在 __construct 中创建了一次,其中 Concrete5 创建了一个静态属性。
我的问题是最好的解决方案是什么?