PHP的memcached getversion报Notice

WBOY
Release: 2016-06-23 14:00:07
Original
843 people have browsed it

Notice: Memcache::getversion() [memcache.getversion]: Server 127.0.0.1:8080 (tcp 11211) failed with: Failed reading line from stream (0) in D:\phpProject\PCSYs\test.php on line 6

$memcache = new Memcache;$memcache->connect('127.0.0.1:8080', 11211) or die ("Could not connect");$version = $memcache->getVersion();
Copy after login


memcached应该已经装好了,否则在connect时就会报错。
是Windows的wamp环境

请教大家如何解决


回复讨论(解决方案)

你连接就有问题
$memcache->connect('127.0.0.1', 11211) or die ("Could not connect");

connect(服务器地址, 端口号)

明显是连接不到memcache。

多谢楼上两位

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template