Index: trunk/phase3/includes/installer/Installer.i18n.php |
— | — | @@ -115,7 +115,8 @@ |
116 | 116 | 'config-xcache' => '[http://trac.lighttpd.net/xcache/ XCache] installed', |
117 | 117 | 'config-apc' => '[http://www.php.net/apc APC] installed', |
118 | 118 | 'config-eaccel' => '[http://eaccelerator.sourceforge.net/ eAccelerator] installed', |
119 | | - 'config-no-cache' => "'''Warning:''' Could not find [http://eaccelerator.sourceforge.net eAccelerator], [http://www.php.net/apc APC] or [http://trac.lighttpd.net/xcache/ XCache]. |
| 119 | + 'config-wincache' => '[http://www.iis.net/download/WinCacheForPhp WinCache] installed', |
| 120 | + 'config-no-cache' => "'''Warning:''' Could not find [http://eaccelerator.sourceforge.net eAccelerator], [http://www.php.net/apc APC], [http://trac.lighttpd.net/xcache/ XCache] or [http://www.iis.net/download/WinCacheForPhp WinCache]. |
120 | 121 | Object caching is not enabled.", |
121 | 122 | 'config-diff3-good' => 'Found GNU diff3: <code>$1</code>.', |
122 | 123 | 'config-diff3-bad' => 'GNU diff3 not found.', |
— | — | @@ -399,7 +400,7 @@ |
400 | 401 | Medium to large sites are highly encouraged to enable this, and small sites will see benefits as well.', |
401 | 402 | 'config-cache-none' => 'No caching. |
402 | 403 | No functionality is removed, but speed may be impacted.', |
403 | | - 'config-cache-accel' => 'PHP object caching (APC, eAccelerator or XCache)', |
| 404 | + 'config-cache-accel' => 'PHP object caching (APC, eAccelerator, XCache or WinCache)', |
404 | 405 | 'config-cache-memcached' => 'Use Memcached (requires additional setup and configuration)', |
405 | 406 | 'config-cache-db' => 'Cache data into the database', |
406 | 407 | 'config-cache-anything' => 'MediaWiki will attempt to cache data anywhere possible, except in Memcached, unless indicated explicitely', |
Index: trunk/phase3/includes/installer/Installer.php |
— | — | @@ -142,7 +142,8 @@ |
143 | 143 | var $objectCaches = array( |
144 | 144 | 'xcache' => 'xcache_get', |
145 | 145 | 'apc' => 'apc_fetch', |
146 | | - 'eaccel' => 'eaccelerator_get' |
| 146 | + 'eaccel' => 'eaccelerator_get', |
| 147 | + 'wincache' => 'wincache_ucache_get' |
147 | 148 | ); |
148 | 149 | |
149 | 150 | /** |