首頁  >  文章  >  後端開發  >  提高define效能的php擴充hidef的安裝與使用

提高define效能的php擴充hidef的安裝與使用

高洛峰
高洛峰原創
2016-11-30 10:15:161082瀏覽

簡介:
  Allow definition of user defined constants in simple ini files, which are then processed like internal constants, without any 
of the usual performance pennal constants, without any 
of the usual performance penas.🀜 ies.
的變數一樣,而且沒有使用Define的效能問題。

作者說Hidef is initialized in php module init, before apache starts spawning children.
在apache啟動前,PHP啟動時創建並初始化了這些常數,這樣就不需要在php裡define常量了,性能自然沒有任何問題了!
在Nginx下同樣可用,以下是安裝過程:

1、下載並解壓縮進入目錄

# wget http://pecl.php.net/get/hidef-0.1.8.tgz
# tar zxvf hidef- 0.1.8.tgz
# cd hidef-0.1.8

2、沒有configure文件,執行phpize建立該文件

# /usr/local/webserver/php/bin/phpize
# ./configure --enable- hidef --with-php-config=/usr/local/webserver/php/bin/php-config
# make
# make install

3、加入php.ini檔案裡面

# vi /usr/local/ webserver/php/etc/php.ini

--------------------------------------- --------
extension=hidef.so
hidef.ini_path=/usr/local/webserver/php/etc/
------------------- -------------------------------------------------- ---------

注意,如果php.ini檔案裡面沒有定義hidef.ini_path,則預設.ini檔案讀取位置為/hidef,只需手動建立檔案vi /hidef/hidef.ini即可。

# vi /usr/local/webserver/php/etc/hidef.ini(此處根據情況自行調整路徑)
複製程式碼 程式碼如下: 
[hidef] 
int ANSWER = 42; 
[hidef] 
int ANSWER = 42; 
[hidef] 
int ANSWER = 42; ; 
float PIE = 3.14159; 

這裡整數用int,浮點數用float,字串用str。
字串str的值使用雙引號來包含,或直接寫字串內容。如果使用單引號,將會把單引號也做為字串的內容。
如str HX='9enjoy',實際儲存的不是9enjoy,是'9enjoy'。

4、重新載入php-fpm即可

# /usr/local/webserver/php/sbin/php-fpm reload

此時,查看phpinfo()的結果,在hidef處就可以看到定義的變數。


----------------------------------------------- ------------------------------

附:

如果使用了APC,apc提供了定義常數的方法。 apc_define_constants和apc_load_constants。 apc_define_constants將常數轉換為陣列存到一個user cache。雖然把常數存在了記憶體中,但每次PHP要求時,仍然需要讀cache,分別定義,因此也不會有什麼明顯的效能提升。我測試了下定義25個常數,使用apc的函數比直接定義常數快了0.01ms。

這樣使用:
if(!apc_load_constants('defined')) {
    $constants = array(
       
    );
    apc_define_constants('defined', $constants );
}

define() is notoriously slow. Since the main benefit of APC is to increase the performance of scripts/applications, this mechanism is provided to streamline the process of mass conapplications, this mechanism is provided to streamline the process of mass constant definition. well as anticipated. 🎜🎜For a better-performing solution, try the hidef extension from PECL. 🎜
陳述:
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn