12 lines
169 B
PHP
12 lines
169 B
PHP
|
<?php
|
||
|
|
||
|
use oat\oatbox\cache\KeyValueCache;
|
||
|
|
||
|
/**
|
||
|
* The default cache implementation
|
||
|
*/
|
||
|
|
||
|
return new KeyValueCache([
|
||
|
KeyValueCache::OPTION_PERSISTENCE => 'cache'
|
||
|
]);
|