PHP 内容缓存 Yac
Yac 是为PHP实现的一个基于共享内存, 无锁的内容Cache
要求:PHP 5.2 +
安装:
$/path/to/phpize$./configure --with-php-config=/path/to/php-config$make && make install
限制:
-
缓存的键长度不超过 48 字节
-
缓存值不能超过 60 兆直接
-
压缩后的缓存值不能超过 1M
示例代码:
<?php$yac = new Yac();$yac->set("foo", "bar");$yac->set( array( "dummy" => "foo", "dummy2" => "foo", ) );?>Yac::get(array|string $key)