Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Yiiで APC キャッシュを破棄するにはどうすればよいですか。このコードを使用したとき:
Yii::app()->cache->destroy();
次のエラーが表示されました。
CApcCache and its behaviors do not have a method or closure named "destroy".
助けてください。
flush()を使用して、キャッシュからすべてを削除できます。お気に入り:
Yii::app()->cache->flush();