2017 © Pedro Peláez
 

library prefixed-redis

Prefixed Redis client

image

stefna/prefixed-redis

Prefixed Redis client

  • Wednesday, May 30, 2018
  • by biggi-stefna
  • Repository
  • 5 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

Prefixed Redis client

A \Redis implementation that has better prefix support., (*1)

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) 

The Versions

30/05 2018

dev-master

9999999-dev

Prefixed Redis client

  Sources   Download

MIT

The Requires

  • php >=7.1.0

 

The Development Requires

by Birgir Haraldsson

redis

29/05 2018

0.0.1

0.0.1.0

Prefixed Redis client

  Sources   Download

MIT

The Requires

  • php >=7.1.0

 

The Development Requires

by Birgir Haraldsson

redis