3 * @file include/cache.php
5 * @brief Class for storing data for a short time
8 use \Friendica\Core\Config;
9 use \Friendica\Core\PConfig;
13 * @brief Check for memcache and open a connection if configured
15 * @return object|boolean The memcache object - or "false" if not successful
17 public static function memcache() {
18 if (!function_exists('memcache_connect')) {
22 if (!Config::get('system', 'memcache')) {
26 $memcache_host = Config::get('system', 'memcache_host', '127.0.0.1');
27 $memcache_port = Config::get('system', 'memcache_port', 11211);
29 $memcache = new Memcache;
31 if (!$memcache->connect($memcache_host, $memcache_port)) {
39 * @brief Return the duration for a given cache level
41 * @param integer $level Cache level
43 * @return integer The cache duration in seconds
45 private function duration($level) {
62 case CACHE_QUARTER_HOUR;
65 case CACHE_FIVE_MINUTES;
76 * @brief Fetch cached data according to the key
78 * @param string $key The key to the cached data
80 * @return mixed Cached $value or "null" if not found
82 public static function get($key) {
84 $memcache = self::memcache();
85 if (is_object($memcache)) {
86 // We fetch with the hostname as key to avoid problems with other applications
87 $cached = $memcache->get(get_app()->get_hostname().":".$key);
88 $value = @unserialize($cached);
90 // Only return a value if the serialized value is valid.
91 // We also check if the db entry is a serialized
92 // boolean 'false' value (which we want to return).
93 if ($cached === serialize(false) || $value !== false) {
100 // Frequently clear cache
101 self::clear($duration);
103 $r = q("SELECT `v` FROM `cache` WHERE `k`='%s' LIMIT 1",
107 if (dbm::is_result($r)) {
108 $cached = $r[0]['v'];
109 $value = @unserialize($cached);
111 // Only return a value if the serialized value is valid.
112 // We also check if the db entry is a serialized
113 // boolean 'false' value (which we want to return).
114 if ($cached === serialize(false) || $value !== false) {
123 * @brief Put data in the cache according to the key
125 * The input $value can have multiple formats.
127 * @param string $key The key to the cached data
128 * @param mixed $valie The value that is about to be stored
129 * @param integer $duration The cache lifespan
131 public static function set($key, $value, $duration = CACHE_MONTH) {
133 // Do we have an installed memcache? Use it instead.
134 $memcache = self::memcache();
135 if (is_object($memcache)) {
136 // We store with the hostname as key to avoid problems with other applications
137 $memcache->set(get_app()->get_hostname().":".$key, serialize($value), MEMCACHE_COMPRESSED, self::duration($duration));
141 /// @todo store the cache data in the same way like the config data
142 q("REPLACE INTO `cache` (`k`,`v`,`expire_mode`,`updated`) VALUES ('%s','%s',%d,'%s')",
144 dbesc(serialize($value)),
146 dbesc(datetime_convert()));
150 * @brief Remove outdated data from the cache
152 * @param integer $maxlevel The maximum cache level that is to be cleared
154 public static function clear($max_level = CACHE_MONTH) {
156 // Clear long lasting cache entries only once a day
157 if (get_config("system", "cache_cleared_day") < time() - self::duration(CACHE_DAY)) {
158 if ($max_level == CACHE_MONTH) {
159 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
160 dbesc(datetime_convert('UTC','UTC',"now - 30 days")), intval(CACHE_MONTH));
163 if ($max_level <= CACHE_WEEK) {
164 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
165 dbesc(datetime_convert('UTC','UTC',"now - 7 days")), intval(CACHE_WEEK));
168 if ($max_level <= CACHE_DAY) {
169 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
170 dbesc(datetime_convert('UTC','UTC',"now - 1 days")), intval(CACHE_DAY));
172 set_config("system", "cache_cleared_day", time());
175 if (($max_level <= CACHE_HOUR) AND (get_config("system", "cache_cleared_hour")) < time() - self::duration(CACHE_HOUR)) {
176 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
177 dbesc(datetime_convert('UTC','UTC',"now - 1 hours")), intval(CACHE_HOUR));
179 set_config("system", "cache_cleared_hour", time());
182 if (($max_level <= CACHE_HALF_HOUR) AND (get_config("system", "cache_cleared_half_hour")) < time() - self::duration(CACHE_HALF_HOUR)) {
183 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
184 dbesc(datetime_convert('UTC','UTC',"now - 30 minutes")), intval(CACHE_HALF_HOUR));
186 set_config("system", "cache_cleared_half_hour", time());
189 if (($max_level <= CACHE_QUARTER_HOUR) AND (get_config("system", "cache_cleared_quarter_hour")) < time() - self::duration(CACHE_QUARTER_HOUR)) {
190 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
191 dbesc(datetime_convert('UTC','UTC',"now - 15 minutes")), intval(CACHE_QUARTER_HOUR));
193 set_config("system", "cache_cleared_quarter_hour", time());
196 if (($max_level <= CACHE_FIVE_MINUTES) AND (get_config("system", "cache_cleared_five_minute")) < time() - self::duration(CACHE_FIVE_MINUTES)) {
197 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
198 dbesc(datetime_convert('UTC','UTC',"now - 5 minutes")), intval(CACHE_FIVE_MINUTES));
200 set_config("system", "cache_cleared_five_minute", time());
203 if (($max_level <= CACHE_MINUTE) AND (get_config("system", "cache_cleared_minute")) < time() - self::duration(CACHE_MINUTE)) {
204 q("DELETE FROM `cache` WHERE `updated` < '%s' AND `expire_mode` = %d",
205 dbesc(datetime_convert('UTC','UTC',"now - 1 minutes")), intval(CACHE_MINUTE));
207 set_config("system", "cache_cleared_minute", time());