0

Zend Framework で Web サイトを開発しており、ZFDebug を使用したいと考えています。ここ
で説明されているインストール手順に従いましたが、ブートストラップで Zend_Cache を初期化しません (構成ファイルのセクションでキャッシュ マネージャーの設定を定義します)。 したがって、ZFDebug のブートストラップ セクションは次のようになります。

if ($this->hasPluginResource("cachemanager")) {
    $this->bootstrap("cachemanager");
    $cache = $this->getPluginResource("cachemanager")->getCacheManager()->getCache("default");
    $options["plugins"]["Cache"] = array("backend" => $cache->getBackend());
}
$debug = new ZFDebug_Controller_Plugin_Debug($options);

このコードでは、ZFDebug はメニューに「キャッシュ」項目を表示しますが、クリックできません。ZFDebug にキャッシュ情報を表示させるにはどうすればよいですか? Xcache を Zend_Cache バックエンドとして使用しています。

4

1 に答える 1

0

今朝 ZFDebug を使い始めたばかりですが、私の Boostrap.php init はキャッシュであり、最初に登録します。_initZFDebug で、レジストリを呼び出してキャッシュを取得します。

protected function _initCache()
{
    $frontendOptions = array(
        'lifetime' => 3600*24*5, // cache lifetime of 5 days
        'automatic_serialization' => true,
        'logging' => false,
        'caching' => true
    );

    $backendOptions = array(
        'cache_dir' => './../data/cache/', // Directory where to put the cache files
        'hashed_directory_level' => 2
    );

    $flickrFrontendOptions = array(
        'lifetime' => 3600*24*5, // cache lifetime of 5 days
        'automatic_serialization' => true,
        'logging' => false,
        'caching' => true
    );

    $flickrBackendOptions = array(
        'cache_dir' => './../data/flickr/', // Directory where to put the cache files
        'hashed_directory_level' => 2
    );

    // getting a Zend_Cache_Core object
    $cache = Zend_Cache::factory(
        'Core',
        'File',
        $frontendOptions,
        $backendOptions);
    Zend_Registry::set('cache', $cache);

    $flickrcache = Zend_Cache::factory(
        'Core',
        'File',
        $flickrFrontendOptions,
        $flickrBackendOptions);
    Zend_Registry::set('flickrcache', $flickrcache);
}

protected function _initZFDebug()
{
    if ($this->hasOption('zfdebug'))
    {
        $autoloader = Zend_Loader_Autoloader::getInstance();
        $autoloader->registerNamespace('ZFDebug');

        $options = array(
            'plugins' => array('Variables', 
                               'Database' => array('adapter' => $db), 
                               'File' => array('basePath' => $this->hasOption('zfdebug.basePath')),
                               'Cache' => array('backend' => Zend_Registry::get('cache')->getBackend()), 
                               'Exception')
        );
        $debug = new ZFDebug_Controller_Plugin_Debug($options);

        $this->bootstrap('frontController');
        $frontController = $this->getResource('frontController');
        $frontController->registerPlugin($debug);
    }
}
于 2012-01-27T12:02:50.140 に答える