RedisAdapter
class RedisAdapter extends AbstractAdapter
Traits
Properties
protected int|null | $maxIdLength | from AbstractTrait |
Methods
Persists several cache items immediately.
Like the native unserialize() function but throws an exception if anything goes wrong.
{@inheritdoc}
Wraps the callback passed to ->get() in a callable.
No description
Returns an ApcuAdapter if supported, a PhpFilesAdapter otherwise.
Creates a Redis connection using a DSN configuration.
Details
abstract protected array|bool
doSave(array $values, int $lifetime)
Persists several cache items immediately.
bool
enableVersioning(bool $enable = true)
Enables/disables versioning of items.
When versioning is enabled, clearing the cache is atomic and doesn't require listing existing keys to proceed, but old keys may need garbage collection and extra round-trips to the back-end are required.
Calling this method also clears the memoized namespace version and thus forces a resynchonization of it.
static protected mixed
unserialize(string $value)
deprecated
deprecated since Symfony 4.2, use DefaultMarshaller instead.
Like the native unserialize() function but throws an exception if anything goes wrong.
callable
setCallbackWrapper(callable|null $callbackWrapper)
Wraps the callback passed to ->get() in a callable.
__construct($redisClient, string $namespace = '', int $defaultLifetime = 0, MarshallerInterface $marshaller = null)
static AdapterInterface
createSystemCache(string $namespace, int $defaultLifetime, string $version, string $directory, LoggerInterface $logger = null)
Returns an ApcuAdapter if supported, a PhpFilesAdapter otherwise.
Using ApcuAdapter makes system caches compatible with read-only filesystems.
static Redis|RedisCluster|Client
createConnection(string $dsn, array $options = array())
Creates a Redis connection using a DSN configuration.
Example DSN: - redis://localhost - redis://example.com:1234 - redis://secret@example.com/13 - redis:///var/run/redis.sock - redis://secret@/var/run/redis.sock/13