Skip to content

Instantly share code, notes, and snippets.

@agborkowski
Forked from notomato/gist:3376901
Created July 22, 2013 21:18
Show Gist options
  • Save agborkowski/6057792 to your computer and use it in GitHub Desktop.
Save agborkowski/6057792 to your computer and use it in GitHub Desktop.
<?php
//config/bootstrap/cache.php
use lithium\storage\Cache;
Cache::config(array(
'local' => array(
'adapter' => 'Apc'
),
'distributed' => array(
'adapter' => 'Memcache',
'host' => '127.0.0.1:11211'
),
'default' => array(
'adapter' => 'File'
)
));
// http://www.slideshare.net/nateabele/the-zen-of-lithium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment