| 10 | | * Group Options: |
| 11 | | * driver - Cache backend driver. Kohana comes with file, database, and memcache drivers. |
| 12 | | * > File cache is fast and reliable, but requires many filesystem lookups. |
| 13 | | * > Database cache can be used to cache items remotely, but is slower. |
| 14 | | * > Memcache is very high performance, but prevents cache tags from being used. |
| | 9 | * driver |
| | 10 | * : Kohana comes with [apc][ref-apc], [eaccelerator][ref-eac], [file][ref-fil], |
| | 11 | * [memcache][ref-mem], [sqlite][ref-sql], and [xcache][ref-xca] drivers. |
| 22 | | * requests - Average number of cache requests that will processed before all expired |
| 23 | | * caches are deleted. This is commonly referred to as "garbage collection". |
| 24 | | * Setting this to 0 or a negative number will disable automatic garbage collection. |
| | 21 | * requests |
| | 22 | * : Average number of cache requests that will processed before all expired |
| | 23 | * caches are deleted (garbage collection). Setting this to 0 will disable |
| | 24 | * automatic garbage collection. |
| | 25 | * |
| | 26 | * [ref-apc]: http://docs.kohanaphp.com/book/cache/drivers/apc |
| | 27 | * [ref-eac]: http://docs.kohanaphp.com/book/cache/drivers/eaccelerator |
| | 28 | * [ref-fil]: http://docs.kohanaphp.com/book/cache/drivers/file |
| | 29 | * [ref-mem]: http://docs.kohanaphp.com/book/cache/drivers/memcache |
| | 30 | * [ref-sql]: http://docs.kohanaphp.com/book/cache/drivers/sqlite |
| | 31 | * [ref-xca]: http://docs.kohanaphp.com/book/cache/drivers/xcache |