Redis-Nextra
Node.js V8 redis, enhanced with native promises and extra functionality. Written in full ES2017. Async is the future!
Usage
// First, we require redis-nextra.const Redis = ; // Create a connection to redis with a stringconst redis = 'host:port' options; // or just 'host' if the port is the defualt port// As an array of strings, to evenly load the serversconst redis = 'host1:port' 'host2' options;// As an object to custom weight different serversconst redis = "host1:port": 1 host2: 2 options; // host 2 will take on 2x the load that host 1 will // Make sure to listen the events from redis.redis ; // As in virtual tables, tables.has is sync as it checks a value from a Set.// And redis.createTable only adds a new value to said Set.if !redistables redis; // Check if the key 'Sandra' exists in the virtual table 'users'.// If it exists, return true, otherwise set it.redis ; // The example above is equal to:redis ; // redis.has is a method from redis-nextra which calls redis.exists and// returns a Boolean.
Docs
All methods return Native Promise.
Additionally, this package does use of Proxy when using redis.prototype.table
, which is an object oriented way to use it, for example:
Normally, with Redis you would use the following code:
redis;
However, with Redis-Nextra and using the redis.prototype.table
's proxy:
redis;
Additionally, this package uses virtual tables stored in redis.prototype.tables
as a Set and uses JSON.parse() and JSON.stringify() internally on all methods with the Json suffix, normal methods will work as expected from the Redis.io documentation.
License
Copyright (c) 2017 BDISTIN