change memcached to memcache

This commit is contained in:
Nicolas Le Goff
2012-01-24 16:59:04 +01:00
parent dc2c854c74
commit 9c922e3aa1

View File

@@ -29,15 +29,15 @@ class Doctrine extends ServiceAbstract implements ServiceInterface
{ {
const ARRAYCACHE = 'array'; const ARRAYCACHE = 'array';
const MEMCACHED = 'memcached'; const MEMCACHE = 'memcache';
const XCACHE = 'xcache'; const XCACHE = 'xcache';
const APC = 'apc'; const APC = 'apc';
protected $caches = array( protected $caches = array(
self::MEMCACHED, self::APC, self::ARRAYCACHE, self::XCACHE self::MEMCACHE, self::APC, self::ARRAYCACHE, self::XCACHE
); );
protected $outputs = array( protected $outputs = array(
'json', 'yaml', 'normal' 'json', 'yaml', 'vdump'
); );
protected $loggers = array( protected $loggers = array(
'monolog', 'phpecho' 'monolog', 'phpecho'