Priority File Manager

📁 public_html
Base Directory:
/home/ecedu/public_html/wp-includes/SimplePie/src/Cache
NameTypeSizeActions
📁 .. Folder -
📄 Base.php File 3782
Edit Download
📄 BaseDataCache.php File 5515
Edit Download
📄 CallableNameFilter.php File 3370
Edit Download
📄 DB.php File 5566
Edit Download
📄 DataCache.php File 4727
Edit Download
📄 File.php File 4860
Edit Download
📄 Memcache.php File 5583
Edit Download
📄 Memcached.php File 5659
Edit Download
📄 MySQL.php File 15558
Edit Download
📄 NameFilter.php File 3108
Edit Download
📄 Psr16.php File 5139
Edit Download
📄 Redis.php File 6069
Edit Download
options = [ 'host' => '127.0.0.1', 'port' => 11211, 'extras' => [ 'timeout' => 3600, // one hour 'prefix' => 'simplepie_', ], ]; $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location)); $this->name = $this->options['extras']['prefix'] . md5("$name:$type"); $this->cache = new NativeMemcache(); $this->cache->addServer($this->options['host'], (int) $this->options['port']); } /** * Save data to the cache * * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property * @return bool Successfulness */ public function save($data) { if ($data instanceof \SimplePie\SimplePie) { $data = $data->data; } return $this->cache->set($this->name, serialize($data), MEMCACHE_COMPRESSED, (int) $this->options['extras']['timeout']); } /** * Retrieve the data saved to the cache * * @return array Data for SimplePie::$data */ public function load() { $data = $this->cache->get($this->name); if ($data !== false) { return unserialize($data); } return false; } /** * Retrieve the last modified time for the cache * * @return int Timestamp */ public function mtime() { $data = $this->cache->get($this->name); if ($data !== false) { // essentially ignore the mtime because Memcache expires on its own return time(); } return false; } /** * Set the last modified time to the current time * * @return bool Success status */ public function touch() { $data = $this->cache->get($this->name); if ($data !== false) { return $this->cache->set($this->name, $data, MEMCACHE_COMPRESSED, (int) $this->options['extras']['timeout']); } return false; } /** * Remove the cache * * @return bool Success status */ public function unlink() { return $this->cache->delete($this->name, 0); } } class_alias('SimplePie\Cache\Memcache', 'SimplePie_Cache_Memcache');