aboutsummaryrefslogtreecommitdiff
path: root/engine/lib/cache.php
blob: 3e8a75d7b24d67923982df6be35cadccba9f094a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php
/**
 * Elgg cache
 * Cache file interface for caching data.
 *
 * @package Elgg
 * @subpackage API
 * @author Curverider Ltd <info@elgg.com>
 * @link http://elgg.org/
 */

require_once dirname(dirname(__FILE__)).'/classes/ElggCache.php';
require_once dirname(dirname(__FILE__)).'/classes/ElggSharedMemoryCache.php';
require_once dirname(dirname(__FILE__)).'/classes/ElggStaticVariableCache.php';
require_once dirname(dirname(__FILE__)).'/classes/ElggFileCache.php';