首頁  >  文章  >  後端開發  >  怎麼給PHP開啟shmop擴充實現共享內存

怎麼給PHP開啟shmop擴充實現共享內存

藏色散人
藏色散人轉載
2021-03-04 11:28:092744瀏覽

給PHP開啟shmop擴充實作共享記憶體

#在專案開發中,想要實作PHP多個行程之間共享資料的功能,讓客戶端連線能夠共享一個狀態,需要開啟共享記憶體函數shmop。如果預期考慮會遇到這方面需求,那麼最好在編譯PHP的時候加入--with-shmop選項。但是編譯的時候沒有加入,只能在重新編譯配置了。

一、找到php原始碼套件裡的擴充目錄,進入shmop

# cd /usr/local/src/php-7.1.10/ext/shmop/

二、執行phpize,產生配置

# phpize
[root@bogon shmop]# ls
acinclude.m4    build         config.h.in  config.nice    configure     CREDITS     libtool    Makefile.fragments  missing        package2.xml  README         shmop.la
aclocal.m4      config.guess  config.log   config.status  configure.in  include     ltmain.sh  Makefile.global     mkinstalldirs  package.xml   run-tests.php  shmop.lo
autom4te.cache  config.h      config.m4    config.sub     config.w32    install-sh  Makefile   Makefile.objects    modules        php_shmop.h   shmop.c        tests

三、執行指令開始編譯

# ./configure --with-php-config=/usr/local/php/bin/php-config
# make && make install
See any operating system documentation about shared libraries for
more information, such as the ld(1) and ld.so(8) manual pages.
----------------------------------------------------------------------

Build complete.
Don't forget to run 'make test'.

Installing shared extensions:     /usr/local/php/lib/php/extensions/no-debug-non-zts-20160303/

四、修改php.ini開啟擴充功能

複製回傳的那行路徑:/usr /local/php/lib/php/extensions/no-debug-non-zts-20160303/

# vim /usr/local/php/etc/php.ini
;extension=php_pdo_sqlite.dll
;extension=php_pgsql.dll
extension=/usr/local/php/lib/php/extensions/no-debug-non-zts-20160303/shmop.so   //添加此行代码,后面跟上shmop.so

重啟php

怎麼給PHP開啟shmop擴充實現共享內存

#

以上是怎麼給PHP開啟shmop擴充實現共享內存的詳細內容。更多資訊請關注PHP中文網其他相關文章!

陳述:
本文轉載於:segmentfault.com。如有侵權,請聯絡admin@php.cn刪除