我正在从php.net搜索有关Memcache的教程。以下是我正在搜索的内容及其原因列表。
适用于PHP 7的Memcache教程,原因是,在cPanel上,版本是PHP 7。 Memcache适用于PHP 7和Windows 7操作系统,原因是我需要在将它应用到生产之前将其测试到我的localhost。
新闻:
到目前为止,我搜索了virtualbox或类似的地方,我可以用它来安装Linux,所以,也许,我可以用PHP 7运行Memcache。这是最后的手段。如果你们有关于如何解决我的问题的教程,建议或建议的链接,请通知我。谢谢。
其他
我尝试在生产中运行此代码:
<?php
$memcache = new Memcache;
$memcache->connect('localhost', 11211) or die ("Could not connect");
$version = $memcache->getVersion();
echo "Server's version: ".$version."<br/>\n";
$tmp_object = new stdClass;
$tmp_object->str_attr = 'test';
$tmp_object->int_attr = 123;
$memcache->set('key', $tmp_object, false, 10) or die ("Failed to save data at the server");
echo "Store data in the cache (data will expire in 10 seconds)<br/>\n";
$get_result = $memcache->get('key');
echo "Data from the cache:<br/>\n";
var_dump($get_result);
?>
它返回1,所以我猜它正常工作?