redis-atomic-json

0.0.2 • Public • Published

Redis Atomic JSON

Build Status: Build Status

Wraps node_redis, adding the support for atomic updates to JSON blobs.

Usage

Simply create an instance of a redis client, and use redis-atomic-json to wrap it:

var redis = require('redis'),
  client = redis.createClient(),
  client = require('redis-atomic-json').wrap(client);

Wrapping the client will add the following methods:

jgetall

Return the object stored as a JSON string:

client.jgetall('my-json-blob');

jset

Atomically set a field on a JSON blob:

client.jset('my-json-blob', 'newKey', 33.5);
 
// or.
 
client.jset('my-json-blob', {newKey: 33.5})

jdel

Atomically delete a field on a JSON blob:

client.jdel('my-json-blob', 'newKey');

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.0.2
    2
    • latest

Version History

  • Version
    Downloads (Last 7 Days)
    • Published
  • 0.0.2
    2
  • 0.0.1
    0

Package Sidebar

Install

npm i redis-atomic-json

Weekly Downloads

2

Version

0.0.2

License

MIT

Last publish

Collaborators

  • bcoe