cache add
This commit is contained in:
@@ -143,4 +143,18 @@ public function select_db($selectItems,$whereAray, $updateTable)
|
||||
}
|
||||
return $ip;
|
||||
}
|
||||
|
||||
public function saveCache($cacheKey,$data){
|
||||
$cacheKey = CACHE_DOMAIN."-".$cacheKey;
|
||||
// $cache = \Config\Services::cache();
|
||||
if (! $foo = cache($cacheKey)) {
|
||||
// echo 'Saving to the cache!<br>';
|
||||
// cache()->save($cacheKey, $this->data_stringify($data), 3000);
|
||||
cache()->save($cacheKey, serialize($data), 3000);
|
||||
|
||||
//serialize
|
||||
}
|
||||
$foo = cache()->get($cacheKey);
|
||||
log_message('critical', "FROM Cache -> ".$foo );
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user