Yac 是为PHP实现的一个基于共享内存, 无锁的内容Cache
Yac的两个应用场景: 1.让PHP进程之间共享一些简单的数据 2.高效地缓存一些页面结果
假
设PHP以PHP-FPM运行,Yac和Pcache缓存的用户内容User
Cache就像Opcache一样,保存在PHP-FPM占用的内存中,下一次脚本可以直接从PHP-FPM中读取数据,httpd_mod-php同
理,而Memcached/Redis需要通过网络(端口)才能访问数据.简而言之,PHP加上Yac和Pcache这些PECL扩展后,自身就是一个K
/V缓存系统,用起来很方便. 要求:PHP 5.2 + 安装: 1 2 3 | $ /path/to/phpize
$. /configure --with-php-config= /path/to/php-config
$ make && make install
|
限制: 缓存的键长度不超过 48 字节 缓存值不能超过 60 兆字节 压缩后的缓存值不能超过 1M
示例代码: 1 2 3 4 5 6 7 8 9 10 | set( "foo" , "bar" );
$yac ->set(
array (
"dummy" => "foo" ,
"dummy2" => "foo" ,
)
);
?>
Yac::get( array |string $key )
|
|