From f790dfbe3a4caa08409896fda0c504eca0723885 Mon Sep 17 00:00:00 2001 From: vus520 Date: Thu, 11 Apr 2013 16:41:07 +0800 Subject: [PATCH] Change-Id: I558f655f5259dec1cfc5ebefadea9ca957e2c61a --- Think/Cache/Driver/Db.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Think/Cache/Driver/Db.php b/Think/Cache/Driver/Db.php index 42af2cd4..48c663f4 100644 --- a/Think/Cache/Driver/Db.php +++ b/Think/Cache/Driver/Db.php @@ -112,7 +112,7 @@ class Db { // 删除缓存 $this->handler->execute('DELETE FROM `'.$this->options['table'].'` WHERE `cachekey`=\''.$key.'\''); } - $this->handler->execute('UPDATE '.$this->options['table'].' SET data=\''.serialize($queue).'\' ,expire=0 WHERE `cachekey`=\'__info__\'') + $this->handler->execute('UPDATE '.$this->options['table'].' SET data=\''.serialize($queue).'\' ,expire=0 WHERE `cachekey`=\'__info__\''); xcache_set('__info__', $queue); } return true;