Home >php教程 >php手册 >php memcache和memcached的区别

php memcache和memcached的区别

WBOY
WBOYOriginal
2016-05-25 16:48:50882browse

首先要肯定的是,必须开启memcached服务,才能用memcache和memcached的php api,那么这两个针对memcached服务的api之间有什么区别呢?

1.memcache是PHP自己的扩展,而memcached是基于libmemcached的扩展。

2.memcache只提供一些基本功能,比如set、get、replace、delete、flush 等等,memcached提供的功能更丰富,有setOption(setOptions)、cas、getMulti(setMulti)、getMultiByKey(setMultiByKey)、addServers(带s,一次性可连接多个节点)。

3.听说memcached的性能比memcache更高,因为支持binary protocol。

4.memcache支持持久化连接,而memcached不支持。

本文地址:

转载随意,但请附上文章地址:-)

Statement:
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