mirror of
https://github.com/kamilwylegala/cakephp2-php8.git
synced 2025-09-03 18:12:40 +00:00
Added doc blocks for WincacheEngine. Fixed Memcache doc block.
This commit is contained in:
parent
ed8daf852b
commit
826001adc7
3 changed files with 24 additions and 13 deletions
|
@ -82,7 +82,7 @@ class Cache {
|
|||
*
|
||||
* `Cache::config('default');`
|
||||
*
|
||||
* There are 4 built-in caching engines:
|
||||
* There are 5 built-in caching engines:
|
||||
*
|
||||
* - `FileEngine` - Uses simple files to store content. Poor performance, but good for
|
||||
* storing large objects, or things that are not IO sensitive.
|
||||
|
@ -90,6 +90,7 @@ class Cache {
|
|||
* - `MemcacheEngine` - Uses the PECL::Memcache extension and Memcached for storage.
|
||||
* Fast reads/writes, and benefits from memcache being distributed.
|
||||
* - `XcacheEngine` - Uses the Xcache extension, an alternative to APC.
|
||||
* - `WincacheEngine` - Uses Windows Cache Extension for PHP. Supports wincache 1.1.0 and higher.
|
||||
*
|
||||
* The following keys are used in core cache engines:
|
||||
*
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue