Commit b0bf8f74 by Alexander Makarov

fixed dbcache multiget

parent 08be6964
...@@ -124,7 +124,7 @@ class DbCache extends Cache ...@@ -124,7 +124,7 @@ class DbCache extends Cache
$query = new Query; $query = new Query;
$query->select(array('id', 'data')) $query->select(array('id', 'data'))
->from($this->cacheTable) ->from($this->cacheTable)
->where(array('id' => $keys)) ->where(array('in', 'id', (array)$keys))
->andWhere('([[expire]] = 0 OR [[expire]] > ' . time() . ')'); ->andWhere('([[expire]] = 0 OR [[expire]] > ' . time() . ')');
if ($this->db->enableQueryCache) { if ($this->db->enableQueryCache) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment