我正在尝试使用http://www.phpfastcache.com/在页面上缓存查询。
我在页面上没有收到任何错误,并且文件正在它需要的 cached.storage 文件夹中成功创建,但是当我在查询中更改数据时,它不会缓存数据。我究竟做错了什么?
include_once("php_fast_cache.php");
phpFastCache::$storage = "auto";
$getItemsQuery = phpFastCache::get("$itemId");
if($getItemsQuery == null) {
$getItemsQuery = mysql_query("select item_id, item_name from items where item_id = $itemId");
phpFastCache::set("$itemId", $getItemsQuery,86400);
}