Issue #2259823 by beejeebus, Wim Leers: Make cache->created be to the millisecond.
parent
e3f9173e65
commit
fa17d471ff
|
@ -189,7 +189,7 @@ class ApcuBackend implements CacheBackendInterface {
|
|||
public function set($cid, $data, $expire = CacheBackendInterface::CACHE_PERMANENT, array $tags = array()) {
|
||||
$cache = new \stdClass();
|
||||
$cache->cid = $cid;
|
||||
$cache->created = REQUEST_TIME;
|
||||
$cache->created = round(microtime(TRUE), 3);
|
||||
$cache->expire = $expire;
|
||||
$cache->tags = implode(' ', $this->flattenTags($tags));
|
||||
$checksum = $this->checksumTags($tags);
|
||||
|
|
Loading…
Reference in New Issue