我怎样才能使 Zend Cache 在不同的 http 方法之间产生差异?
现在,例如,如果我进行 GET 调用,它会被缓存并且在之后工作当然更快,但是如果我在同一个 uri 之后进行 POST 调用,它会将来自此 uri 上最后一个缓存的 GET 的数据发回给我。
所以基本上,我认为它使用 uri 作为缓存项目的 id,而不是调用的类型。在这种情况下该怎么办?我有一个完整的客户端,我尝试从中缓存结果。
protected function _initCache()
{
$dir = APPLICATION_PATH .'/../public/tmp/cache/' ;
$frontendOptions = array(
'lifetime' => 10,
'content_type_memorization' => true,
'default_options' => array(
'cache' => true,
'cache_with_get_variables' => true,
'cache_with_post_variables' => true,
'cache_with_session_variables' => true,
'cache_with_cookie_variables' => false,
'automatic_cleaning_factor' => 0,
),
'regexps' => array(
'^/api/' => array('cache' => true),
'^/api2/' => array('cache' => true),
)
);
$backendOptions = array(
'cache_dir' =>$dir,
'hashed_directory_level' => 1
);
$cache = Zend_Cache::factory('Page',
'File',
$frontendOptions,
$backendOptions);
Zend_Db_Table_Abstract::setDefaultMetadataCache($cache);
Zend_Registry::set('Cache', $cache);
}