如何在没有Composer的情况下使用phpFastCache缓存查询?

时间:2018-05-18 00:43:45

标签: php caching web phpfastcache

我正在尝试使用phpFastCache来满足所有缓存需求,但我真的不明白如何使用它。我理解他们的例子,是的,我已经尝试了他们并且他们很成功,但它并没有帮助我做我需要做的事情。

我正在尝试缓存查询(确切地说是Valve的源查询协议。)

以下是结果,我也使用单独的SourceQuery脚本,这只是结果(queryresults.php):

$serveroneip = "example.ip";
$serveroneport = "27015"
$server = new SourceQuery($serveroneip, $serveroneport);
$infos  = $server->getInfos();

然后将其添加到index.php页面:

<?php
include ("queryresults.php")
?>
<p>'.$infos['players'].' / '.$infos['places'].'</p>

这将打印当前玩家数量和源服务器上的总玩家数量。我基本上试图缓存该查询,因为它有助于页面加载时间。

如果我听起来像一个完整的菜鸟,我很抱歉。这只是一个让我在过去几天感到沮丧的问题,我把这看作是最后的手段。如果您需要更多信息,我很乐意提供!非常感谢你的帮助!

1 个答案:

答案 0 :(得分:1)

从Phpfastcache V5开始,该库符合PSR6接口

所以基本上代码非常简单,使用composer更容易:

composer require phpfastcache/phpfastcache

如果未全球安装:

php composer.phar require phpfastcache/phpfastcache

composer.phar可以在这里下载:https://getcomposer.org/composer.phar

现在代码,用你的情况:     

use Phpfastcache\CacheManager;

/**
 * You have two many ways...
 * Via composer:
 */
require 'vendor/autoload.php';

/**
 * Or if you have absolutely no choice, we provide a standalone autoloader
 */
// require 'phpfastcache/src/autoload.php';

/**
 * We are using the default but most used driver: Files
 * You can use redis/predis, etc but it's a bit more complexe
 */
$cachePool = CacheManager::getInstance('Files');
$cacheItem = $cachePool->getItem('mySteamServer');

/**
 * Does we found something in cache ?
 */
if($cacheItem->isHit()){
    /**
     * Yes, let's use it
     */
    $infos = $cacheItem->get();
}else{
    /**
     * Nahh, let's retrieve the server data and cache them
     */
    $serveroneip = "example.ip";
    $serveroneport = "27015";
    $server = new SourceQuery($serveroneip, $serveroneport);
    $infos  = $server->getInfos();
    $cacheItem->set($infos)->expiresAfter(300);// The TTL in seconds, here is 5 minutes
    $cachePool->save($cacheItem);// Persist the cache item
}

/**
 * Rest of your code goes here
 */

无论如何,我热烈建议你使用作曲家。这将使您的依赖项管理更容易,并允许您获得对自动更新,冲突管理,自动加载噩梦等的绝对控制。