cache add

This commit is contained in:
DESKTOP-GBA0BK8\Admin
2023-04-13 22:48:19 -04:00
parent 9d4670887c
commit fbaf2ff141
+14
View File
@@ -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 );
}
}