mirror of
https://github.com/php/php-src.git
synced 2025-08-15 21:48:51 +02:00
Document opcache.preload_user directive
This commit is contained in:
parent
6255308624
commit
61dcae50d5
4 changed files with 18 additions and 0 deletions
3
NEWS
3
NEWS
|
@ -2,6 +2,9 @@ PHP NEWS
|
||||||
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||
?? ??? ????, PHP 7.4.0RC2
|
?? ??? ????, PHP 7.4.0RC2
|
||||||
|
|
||||||
|
- Opcache:
|
||||||
|
. Add opcache.preload_user INI directive. (Dmitry)
|
||||||
|
|
||||||
- PDO_MySQL:
|
- PDO_MySQL:
|
||||||
. Fixed bug #41997 (SP call yields additional empty result set). (cmb)
|
. Fixed bug #41997 (SP call yields additional empty result set). (cmb)
|
||||||
|
|
||||||
|
|
|
@ -652,6 +652,11 @@ PHP 7.4 UPGRADE NOTES
|
||||||
. New INI directive to include or exclude arguments from stack traces
|
. New INI directive to include or exclude arguments from stack traces
|
||||||
generated for exceptions.
|
generated for exceptions.
|
||||||
|
|
||||||
|
- opcache.preload_user
|
||||||
|
. New INI directive to specifiy the user account under which preloading code
|
||||||
|
is executed, if it was to be run as root otherwise (which is not allowed
|
||||||
|
for security reasons).
|
||||||
|
|
||||||
========================================
|
========================================
|
||||||
12. Windows Support
|
12. Windows Support
|
||||||
========================================
|
========================================
|
||||||
|
|
|
@ -1891,6 +1891,11 @@ ldap.max_links = -1
|
||||||
; http://php.net/opcache.preload
|
; http://php.net/opcache.preload
|
||||||
;opcache.preload=
|
;opcache.preload=
|
||||||
|
|
||||||
|
; Preloading code as root is not allowed for security reasons. This directive
|
||||||
|
; facilitates to let the preloading to be run as another user.
|
||||||
|
; http://php.net/opcache.preload_user
|
||||||
|
;opcache.preload_user=
|
||||||
|
|
||||||
; Prevents caching files that are less than this number of seconds old. It
|
; Prevents caching files that are less than this number of seconds old. It
|
||||||
; protects from caching of incompletely updated files. In case all file updates
|
; protects from caching of incompletely updated files. In case all file updates
|
||||||
; on your site are atomic, you may increase performance by setting it to "0".
|
; on your site are atomic, you may increase performance by setting it to "0".
|
||||||
|
|
|
@ -1893,6 +1893,11 @@ ldap.max_links = -1
|
||||||
; http://php.net/opcache.preload
|
; http://php.net/opcache.preload
|
||||||
;opcache.preload=
|
;opcache.preload=
|
||||||
|
|
||||||
|
; Preloading code as root is not allowed for security reasons. This directive
|
||||||
|
; facilitates to let the preloading to be run as another user.
|
||||||
|
; http://php.net/opcache.preload_user
|
||||||
|
;opcache.preload_user=
|
||||||
|
|
||||||
; Prevents caching files that are less than this number of seconds old. It
|
; Prevents caching files that are less than this number of seconds old. It
|
||||||
; protects from caching of incompletely updated files. In case all file updates
|
; protects from caching of incompletely updated files. In case all file updates
|
||||||
; on your site are atomic, you may increase performance by setting it to "0".
|
; on your site are atomic, you may increase performance by setting it to "0".
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue