Home
last modified time | relevance | path

Searched full:cache (Results 101 – 125 of 2069) sorted by path

12345678910>>...83

/dokuwiki/vendor/simplepie/simplepie/library/SimplePie/Cache/
H A DBase.php46 use SimplePie\Cache\Base;
48 interface_exists('SimplePie\Cache\Base');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_Base" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Base" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Base" instead */
H A DDB.php46 use SimplePie\Cache\DB;
48 class_exists('SimplePie\Cache\DB');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_DB" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\DB" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\DB" instead */
H A DFile.php46 use SimplePie\Cache\File;
48 class_exists('SimplePie\Cache\File');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_File" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\File" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\File" instead */
H A DMemcache.php46 use SimplePie\Cache\Memcache;
48 class_exists('SimplePie\Cache\Memcache');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_Memcache" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Memcache" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Memcache" instead */
H A DMemcached.php46 use SimplePie\Cache\Memcached;
48 class_exists('SimplePie\Cache\Memcached');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_Memcached" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Memcached" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Memcached" instead */
H A DMySQL.php46 use SimplePie\Cache\MySQL;
48 class_exists('SimplePie\Cache\MySQL');
50 // @trigger_error(sprintf('Using the "SimplePie_Cache_MySQL" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\MySQL" instead.'), \E_USER_DEPRECATED);
53 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\MySQL" instead */
H A DRedis.php6 * SimplePie Redis Cache Extension
15 use SimplePie\Cache\Redis;
17 class_exists('SimplePie\Cache\Redis');
19 // @trigger_error(sprintf('Using the "SimplePie_Cache_Redis" class is deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Redis" instead.'), \E_USER_DEPRECATED);
22 /** @deprecated since SimplePie 1.7.0, use "SimplePie\Cache\Redis" instead */
/dokuwiki/vendor/simplepie/simplepie/src/
H A DCache.php48 use SimplePie\Cache\Base;
51 * Used to create cache objects
61 class Cache class
64 * Cache handler classes
71 'mysql' => 'SimplePie\Cache\MySQL',
72 'memcache' => 'SimplePie\Cache\Memcache',
73 'memcached' => 'SimplePie\Cache\Memcached',
74 'redis' => 'SimplePie\Cache\Redis'
85 * Create a new SimplePie\Cache object
88 * @param string $filename Unique identifier for cache objec
[all...]
H A DIRI.php717 static $cache;
719 $cache = null;
722 if (!$cache) {
723 $cache = [];
728 } elseif (isset($cache[$iri])) {
738 ] = $cache[$iri];
754 $cache[$iri] = [
797 static $cache;
799 $cache = null;
802 if (!$cache) {
[all...]
H A DMisc.php2046 header('Cache-Control: must-revalidate');
H A DParser.php350 static $cache = [];
351 if (!isset($cache[$string])) {
371 $cache[$string] = [$namespace, $local_name];
373 $cache[$string] = ['', $string];
376 return $cache[$string];
503 // Cache this h-card for the next h-entry to check.
H A DRegistry.php69 Cache::class => Cache::class,
113 'Cache' => Cache::class,
255 case Cache::class:
257 // Cache::create() methods in PHP < 8.0.
/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DBase.php46 namespace SimplePie\Cache;
49 * Base for cache objects
51 * Classes to be used with {@see \SimplePie\Cache::register()} are expected
61 * Feed cache type
68 * Image cache type
75 * Create a new cache object
78 * @param string $name Unique ID for the cache
84 * Save data to the cache
86 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache th
[all...]
H A DBaseDataCache.php46 namespace SimplePie\Cache;
51 * Adapter for deprecated \SimplePie\Cache\Base implementations
62 private $cache; variable in SimplePie\\Cache\\BaseDataCache
64 public function __construct(Base $cache) argument
66 $this->cache = $cache;
70 * Fetches a value from the cache.
77 * @param string $key The unique key of this item in the cache.
80 * @return array|mixed The value of the item from the cache, or $default in case of cache mis
[all...]
H A DCallableNameFilter.php44 namespace SimplePie\Cache;
47 * Creating a cache filename with callables
65 * Method to create cache filename with.
81 * @param string $name The name for the cache will be most likly an url with query string
83 * @return string the new cache name
H A DDB.php46 namespace SimplePie\Cache;
122 class_alias('SimplePie\Cache\DB', 'SimplePie_Cache_DB');
H A DDataCache.php46 namespace SimplePie\Cache;
51 * Subset of PSR-16 Cache client for caching data arrays
66 * Fetches a value from the cache.
73 * @param string $key The unique key of this item in the cache.
76 * @return array|mixed The value of the item from the cache, or $default in case of cache miss.
84 * Persists data in the cache, uniquely referenced by a key with an optional expiration TTL time.
105 * Delete an item from the cache by its unique key.
112 * @param string $key The unique cache key of the item to delete.
H A DFile.php46 namespace SimplePie\Cache;
87 * Create a new cache object
90 * @param string $name Unique ID for the cache
102 * Save data to the cache
104 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
121 * Retrieve the data saved to the cache
134 * Retrieve the last modified time for the cache
154 * Remove the cache
167 class_alias('SimplePie\Cache\Fil
[all...]
H A DMemcache.php46 namespace SimplePie\Cache;
71 protected $cache; variable in SimplePie\\Cache\\Memcache
81 * Cache name
88 * Create a new cache object
91 * @param string $name Unique ID for the cache
104 $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
108 $this->cache = new NativeMemcache();
109 $this->cache->addServer($this->options['host'], (int) $this->options['port']);
113 * Save data to the cache
115 * @param array|\SimplePie\SimplePie $data Data to store in the cache
[all...]
H A DMemcached.php46 namespace SimplePie\Cache;
71 protected $cache; variable in SimplePie\\Cache\\Memcached
80 * Cache name
86 * Create a new cache object
88 * @param string $name Unique ID for the cache
101 $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
105 $this->cache = new NativeMemcached();
106 $this->cache->addServer($this->options['host'], (int)$this->options['port']);
110 * Save data to the cache
111 * @param array|\SimplePie\SimplePie $data Data to store in the cache
[all...]
H A DMySQL.php46 namespace SimplePie\Cache;
78 * Cache ID
85 * Create a new cache object
88 * @param string $name Unique ID for the cache
105 $this->options = array_replace_recursive($this->options, \SimplePie\Cache::parse_URL($location));
149 * Save data to the cache
151 * @param array|\SimplePie\SimplePie $data Data to store in the cache. If passed a SimplePie object, only cache the $data property
270 * Retrieve the data saved to the cache
327 * Retrieve the last modified time for the cache
[all...]
H A DNameFilter.php44 namespace SimplePie\Cache;
47 * Interface for creating a cache filename
55 * Method to create cache filename with.
71 * @param string $name The name for the cache will be most likly an url with query string
73 * @return string the new cache name
H A DPsr16.php46 namespace SimplePie\Cache;
52 * Caches data into a PSR-16 cache implementation
61 * PSR-16 cache implementation
65 private $cache; variable in SimplePie\\Cache\\Psr16
68 * PSR-16 cache implementation
70 * @param CacheInterface $cache
72 public function __construct(CacheInterface $cache) argument
74 $this->cache = $cache;
78 * Fetches a value from the cache
[all...]
H A DRedis.php46 namespace SimplePie\Cache;
71 protected $cache; variable in SimplePie\\Cache\\Redis
81 * Cache name
88 * Create a new cache object
91 * @param string $name Unique ID for the cache
96 //$this->cache = \flow\simple\cache\Redis::getRedisClientInstance();
97 $parsed = \SimplePie\Cache::parse_URL($location);
106 $this->cache = $redis;
121 * @param NativeRedis $cache
123 setRedisClient(NativeRedis $cache) global() argument
[all...]
/dokuwiki/vendor/simplepie/simplepie/src/Parse/
H A DDate.php603 static $cache;
604 if (!isset($cache[get_class($this)])) {
609 $cache[get_class($this)][] = $method;
614 foreach ($cache[get_class($this)] as $method) {

12345678910>>...83