RedisCache
class RedisCache extends AbstractCache
Traits
| RedisTrait | |
| AbstractTrait | |
| LoggerAwareTrait |
Methods
| hasItem($key) {@inheritdoc} | from AbstractTrait | |
| clear() {@inheritdoc} | from AbstractTrait | |
| deleteItem($key) {@inheritdoc} | from AbstractTrait | |
| deleteItems(array $keys) {@inheritdoc} | from AbstractTrait | |
| static | handleUnserializeCallback($class) | from AbstractTrait |
| get($key, $default = null) {@inheritdoc} | from AbstractCache | |
| set($key, $value, $ttl = null) {@inheritdoc} | from AbstractCache | |
| getMultiple($keys, $default = null) {@inheritdoc} | from AbstractCache | |
| setMultiple($values, $ttl = null) {@inheritdoc} | from AbstractCache | |
| deleteMultiple($keys) {@inheritdoc} | from AbstractCache | |
| init($redisClient, $namespace = '', $defaultLifetime) | from RedisTrait | |
| static Redis|Client | createConnection(string $dsn, array $options = array()) Creates a Redis connection using a DSN configuration. | from RedisTrait |
| __construct(Redis|RedisArray|RedisCluster|Client $redisClient, string $namespace = '', int $defaultLifetime) |
Details
hasItem($key)
{@inheritdoc}
Parameters
| $key |
clear()
{@inheritdoc}
deleteItem($key)
{@inheritdoc}
Parameters
| $key |
deleteItems(array $keys)
{@inheritdoc}
Parameters
| array | $keys |
static handleUnserializeCallback($class)
Parameters
| $class |
get($key, $default = null)
{@inheritdoc}
Parameters
| $key | ||
| $default |
set($key, $value, $ttl = null)
{@inheritdoc}
Parameters
| $key | ||
| $value | ||
| $ttl |
getMultiple($keys, $default = null)
{@inheritdoc}
Parameters
| $keys | ||
| $default |
setMultiple($values, $ttl = null)
{@inheritdoc}
Parameters
| $values | ||
| $ttl |
deleteMultiple($keys)
{@inheritdoc}
Parameters
| $keys |
init($redisClient, $namespace = '', $defaultLifetime)
Parameters
| $redisClient | ||
| $namespace | ||
| $defaultLifetime |
static Redis|Client createConnection(string $dsn, array $options = array())
Creates a Redis connection using a DSN configuration.
Example DSN: - redis://localhost - redis://example.com:1234 - redis://[email protected]/13 - redis:///var/run/redis.sock - redis://secret@/var/run/redis.sock/13
Parameters
| string | $dsn | |
| array | $options | See self::$defaultConnectionOptions |
Return Value
| Redis|Client | According to the "class" option |
Exceptions
| InvalidArgumentException | When the DSN is invalid. |
__construct(Redis|RedisArray|RedisCluster|Client $redisClient, string $namespace = '', int $defaultLifetime)
Parameters
| Redis|RedisArray|RedisCluster|Client | $redisClient | |
| string | $namespace | |
| int | $defaultLifetime |
© 2004–2017 Fabien Potencier
Licensed under the MIT License.
http://api.symfony.com/3.3/Symfony/Component/Cache/Simple/RedisCache.html