APC settings
'apc'
=>
array
(
'driver'
=>
'apc'
,
'default_expire'
=> 3600,
),
Kohana Framework, kohana 3 tutorial , kohana hmvc
default
there is no need to pass the group name when instantiating a cache instance.application/config/cache.php
file.current_page
, total_items
, items_per_page
, view
, auto_hide
and first_page_in_url
.
return
array
(
// Application defaults
'default'
=>
array
(
'current_page'
=>
array
(
'source'
=>
'query_string'
,
'key'
=>
'page'
),
// source: "query_string" or "route"
'total_items'
=> 0,
'items_per_page'
=> 10,
'view'
=>
'pagination/basic'
,
'auto_hide'
=> TRUE,
'first_page_in_url'
=> FALSE,
),
);