Skip to content
This repository has been archived by the owner on Feb 4, 2022. It is now read-only.

Commit

Permalink
Add lib:template.engine.nooku default cache settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
johanjanssens committed Aug 26, 2014
1 parent 3a84957 commit ae12487
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions config/bootstrapper.php-empty
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ return array(

'priority' => 1, //Library\ObjectBootstrapper::PRIORITY_HIGHEST,

// Global Settings
// Object Manager Settings
'cache' => false,
'cache_namespace' => defined('APPLICATION_NAME') ? APPLICATION_NAME : 'nooku',
'cache_namespace' => APPLICATION_NAME,
'debug' => '0',

'identifiers' => array(
Expand Down Expand Up @@ -47,7 +47,7 @@ return array(

//Cache Settings
'cache' => false,
'cache_namespace' => defined('APPLICATION_NAME') ? APPLICATION_NAME : 'nooku',
'cache_namespace' => APPLICATION_NAME,

),

Expand Down Expand Up @@ -79,6 +79,14 @@ return array(
'username' => '', // MySQL username
'password' => '', // MySQL password

),

'lib:template.engine.nooku' => array(

//Cache Settings
'cache' => false,
'cache_path' => APPLICATION_BASE.'/cache',

)
)
);

0 comments on commit ae12487

Please sign in to comment.