Heim  >  Artikel  >  Backend-Entwicklung  >  php apc缓存的内存共享方式是什么

php apc缓存的内存共享方式是什么

WBOY
WBOYOriginal
2016-06-06 20:52:011612Durchsuche

用了这么久apc还没有研究过它的代码,突然对其内存共享的方式比较感兴趣,apc是一个客户端的内存缓存,它所有的缓存都是存在web服务器本地的,那么我有以下疑问

apc的内存共享是基于进程的吗?如果我是用php-fpm方式运行,那么多个fpm子进程之间是如何共享内存,或者干脆是没有共享内存,而是各自独立分配一块内存做缓存。

回复内容:

用了这么久apc还没有研究过它的代码,突然对其内存共享的方式比较感兴趣,apc是一个客户端的内存缓存,它所有的缓存都是存在web服务器本地的,那么我有以下疑问

apc的内存共享是基于进程的吗?如果我是用php-fpm方式运行,那么多个fpm子进程之间是如何共享内存,或者干脆是没有共享内存,而是各自独立分配一块内存做缓存。

看这里(https://bugs.php.net/bug.php?id=57825),有人说:
sadly (or luckily for some people here), the way php-fpm works
makes all the processes share the same cache, since apc is loaded into the main
process that is forked to spawn children.

但我没做过实验,没有验证。

基于共享内存, 可以参看apc的apc_shm.c

PHP-FPM方式下APC的opcode缓存和用户数据缓存是在进程间共享的。

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn