stefna/prefixed-redis

Prefixed Redis client

1.2.1 2023-10-11 08:29 UTC

This package is auto-updated.

Last update: 2024-04-11 09:31:36 UTC


README

A \Redis implementation that has better prefix support.

Usage

$redis = new \Stefna\Redis\PrefixedRedis('prefix.');
$redis->set('a', 'b'); // sets "prefix.a" to "b"
$redis->flushDb(); // removes all keys in database with keys like 'prefix.*'
// Same as:
$redis->deleteAll();
// And (for now at least)
$redis->flushAll(); // Does not run on all databases (only current)