From f4becf376c5d7398db5f9286552be9f4ddc01690 Mon Sep 17 00:00:00 2001 From: Alexander Kochetov Date: Thu, 9 Jan 2014 07:59:07 +0400 Subject: [PATCH] \yii\caching\DbCache updated --- framework/yii/caching/DbCache.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/framework/yii/caching/DbCache.php b/framework/yii/caching/DbCache.php index cca2c55..76e2341 100644 --- a/framework/yii/caching/DbCache.php +++ b/framework/yii/caching/DbCache.php @@ -63,7 +63,7 @@ class DbCache extends Cache * When using DbCache in a production server, we recommend you create a DB index for the 'expire' * column in the cache table to improve the performance. */ - public $cacheTable = 'tbl_cache'; + public $cacheTable = '{{%cache}}'; /** * @var integer the probability (parts per million) that garbage collection (GC) should be performed * when storing a piece of data in the cache. Defaults to 100, meaning 0.01% chance.