if hit on disk, reload into memcache
This commit is contained in:
parent
b1df14ca4a
commit
51dab939ea
1 changed files with 5 additions and 1 deletions
|
@ -770,7 +770,11 @@ function _start_cache() {
|
|||
else {
|
||||
header("Content-type: text/html");
|
||||
header("Last-Modified: $gmdate_mod");
|
||||
$data = @gzuncompress(file_get_contents($_cache_filename));
|
||||
$zdata = @file_get_contents($_cache_filename);
|
||||
if(CACHE_MEMCACHE) {
|
||||
$_cache_memcache->set($_cache_hash, $zdata, 0, 600);
|
||||
}
|
||||
$data = @gzuncompress($zdata);
|
||||
if($data) {
|
||||
print $data;
|
||||
exit;
|
||||
|
|
Reference in a new issue