0
我在symfony2中使用Doctrine結果緩存。symfony2中的生產環境中不會刪除Doctrine結果緩存
只在生產環境原則結果緩存刪除不刪除緩存。 但在開發環境中,結果緩存刪除工作正常。
這裏是我寫的使用結果緩存在教條中的代碼。
//code to store result cache in doctrin.
$qb->useResultCache(true);
$qb->setResultCacheId('key');
//code to delete result cache when db data edit.
$em->getConfiguration()->getResultCacheImpl()->delete('key');
這裏問題在於symfony2中的生產環境。
生產環境是否有任何特殊的教條緩存配置?
請幫我解決這個問題。
我有檢查環境它只是'prod',並試圖刪除所有的緩存也仍然沒有在生產環境中刪除。 –