Igbinary是php序列化(serialize)的替代方案。Igbinary is a drop in replacement for the standard PHP serializer. Instead of time and space consuming textual representation, igbinary stores PHP data structures in a compact binary form. Savings are significant when using memcached or similar memory based storages for serialized data.
2010-10-19 12:08:19
官方网站:http://opensource.dynamoid.com/
这个东西可用来替代php的serialize,用它序列化后,就变为二进制的格式了,它的速度要比serialize和json_encode要快。
在占用字节数大小方面,json最小,igbinary第二,serialize最大,json并没有存类型,所以比较小,igbinary用了二进制,如果不和memcached配合的话,就可以把它以binary的型式存在数据库里了,结构可以选成binary。