stop using DB_DataObject's staticGet() which caches
This commit is contained in:
parent
360fdb219d
commit
727978332a
@ -51,11 +51,17 @@ class Memcached_DataObject extends DB_DataObject
|
|||||||
if ($i) {
|
if ($i) {
|
||||||
return $i;
|
return $i;
|
||||||
} else {
|
} else {
|
||||||
$i = DB_DataObject::staticGet($cls, $k, $v);
|
$i = DB_DataObject::factory($cls);
|
||||||
if ($i) {
|
if (empty($i)) {
|
||||||
$i->encache();
|
return null;
|
||||||
|
}
|
||||||
|
$result = $i->get($k, $v);
|
||||||
|
if ($result) {
|
||||||
|
$i->encache();
|
||||||
|
return $i;
|
||||||
|
} else {
|
||||||
|
return null;
|
||||||
}
|
}
|
||||||
return $i;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user