Home > Backend Development > PHP Tutorial > memcached - php 操作memcache 数据处理

memcached - php 操作memcache 数据处理

WBOY
Release: 2016-06-06 20:19:51
Original
1091 people have browsed it

在php中操作memcache,使用json_encode还是使用serialize格式化数据比较好?使用的是memcache扩展,不是memcached扩展

回复内容:

在php中操作memcache,使用json_encode还是使用serialize格式化数据比较好?使用的是memcache扩展,不是memcached扩展

这里有个执行性能的比较, http://www.ooso.net/archives/538
从效果上看 json_encode 执行效率确实远高于 serialize ,不过 json 也有缺憾,就是不支持直接的对象存储。
如果服务器允许的话,最好上 igbinary 吧,这个效果是奇好的,直接二进制序列化。

Related labels:
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