Home
last modified time | relevance | path

Searched refs:redis (Results 1 – 1 of 1) sorted by relevance

/dokuwiki/vendor/simplepie/simplepie/src/Cache/
H A DRedis.php51 * Caches data to redis
53 * Registered for URLs with the "redis" protocol
55 * For example, `redis://localhost:6379/?timeout=3600&prefix=sp_&dbIndex=0` will
56 * connect to redis on `localhost` on port 6379. All tables will be
98 $redis = new NativeRedis();
99 $redis->connect($parsed['host'], $parsed['port']);
101 $redis->auth($parsed['pass']);
104 $redis->select((int)substr($parsed['path'], 1));
106 $this->cache = $redis;