简介
IgBinary,第三方序列化扩展,替代默认的 serialize
,具有高性能、节省空间等特点
下载
$ git clone https://github.com/igbinary/igbinary.git
安装
$ phpize
$ ./configure --with-php-config=/www/server/php/72/bin/php-config
$ sudo make
$ sudo make install
配置
; Load igbinary extension
extension=igbinary.so
; Use igbinary as session serializer
session.serialize_handler=igbinary
; Enable or disable compacting of duplicate strings
; The default is On.
igbinary.compact_strings=On
; If uncommented, use igbinary as the serializer of APCu
; (APCu 5.1.10 or newer is strongly recommended)
apc.serializer=igbinary
验证
$ php -m | grep igbinary
输出 igbinary
说明成功
用法
igbinary_serialize
igbinary_unserialize
必须 注册 为本站用户, 登录 后才可以发表评论!