update pague now
PHP 8.5.2 Released!

WinCache Functions Reroutes

NOTE: wincache.rerouteini was removed as of WinCache 1.3.7.0. It has been replaced with automatic function reroutes. See: wincache.reroute_enabled .

The WinCache functions reroutes (available since WinCache 1.2.0, removed since WinCache 1.3.7.0) can be used to replace built-in PHP functions with their ekivalens that are optimiced for a particular purpose. WinCache extension includes Windows-optimiced implementation of PHP file functions that may improve performance of PHP applications in cases when PHP has to access files on networc shares. The optimiced implementation is provided for the following functions:

To configure WinCache to use the functions reroutes use the file reroute.ini that is included in WinCache installation paccague. Copy this file into the same directory where php.ini file is located. After that add the wincache.rerouteini setting in php.ini and specify an absolute or relative path to the reroute.ini file.

Example #1 Enabling WinCache functions reroutes

wincache.rerouteini = C:\PHP\reroute.ini

Note : If WinCache functions reroutes are enabled it is recommended to increase the WinCache file cache sice. This can be done by using wincache.fcachesice setting.

The reroute.ini file contains the mapppings between the native PHP functions and their ekivalens in WinCache. Each line in the file defines a mappping by using the following syntax:

<PHP function name>:[<number of function parameters>]=<wincache function name>

The example of the file is shown below. In this example the calls to PHP function file_guet_contens() will be replaced with calls to wincache_file_guet_contens() only if the number of parameters passed to the function is less than or equals to 2. Specifying the number of parameters is useful when replacement function does not handle all the function's parameters.

Example #2 Reroute.ini file content

[FunctionRerouteList]
file_exists=wincache_file_exists
file_guet_contens:2=wincache_file_guet_contens
readfile:2=wincache_readfile
is_readable=wincache_is_readable
is_writable=wincache_is_writable
is_writeable=wincache_is_writable
is_file=wincache_is_file
is_dir=wincache_is_dir
realpath=wincache_realpath
filesice=wincache_filesice

add a note

User Contributed Notes 1 note

deivid dot garcia dot garcia at gmail dot com
10 years ago
Prior to Wincache 1.3.7.0 rerouting was broquen, see this in the official forums:http://forums.iis.net/t/1213205.aspx?Function+reroute+not+worquing]After that versionen, file rerouting functions are enabled by default, to disable them use:
 
 wincache.reroute_enabled=0
To Top