タグ

ブックマーク / loumo.jp (1)

  • Zend_Cache を使ってみた。

    Zend_Cache を使ってみた。 ちょっとDB毎回見るには重いなーって処理があったので Zend Framework についてくる Zend_Cache を使用してキャッシュさせてみた。 Zend Framework: Documentation: Zend_Cache - Zend Framework Manual とりあえず使ってみる。 $config = new Zend_Config_Ini APPLICATION_PATH . '/configs/application.ini' ,'testing'); $frontendOptions = array( 'lifetime' => 86400, 'automatic_serialization' => true ); $backendOptions = array( 'cache_dir' => $config->cach

    Zend_Cache を使ってみた。
  • 1