Closed (outdated)
Project:
Cache
Version:
6.x-1.x-dev
Component:
Code
Priority:
Major
Category:
Bug report
Assigned:
Unassigned
Reporter:
Created:
8 Dec 2010 at 09:19 UTC
Updated:
6 Oct 2018 at 13:34 UTC
Jump to comment: Most recent
In apc.inc in apcCacheEngine::set (line 111)
// Attempt to store full key and value
if (isset($ttl)) {
$result = apc_fetch($this->key($key), $data, $ttl);
}
else {
$result = apc_store($this->key($key), $data);
}
did you mean :
// Attempt to store full key and value
if (isset($ttl)) {
$result = apc_store($this->key($key), $data, $ttl);
}
else {
$result = apc_store($this->key($key), $data);
}
Comments
Comment #1
azenned commented