0.1.2 • Published 10 years ago

bluemixdatacache v0.1.2

Weekly downloads
30
License
-
Repository
github
Last release
10 years ago

bluemixdatacache

A simple Node.js library to interact with BlueMix's DataCache service.

It:

  • parses the credentials found in BlueMix's environment variables
  • exposes put/get/remove functions to add/fetch/remove key/value pairs
var bluemixdatacache = require('bluemixdatacache');

bluemixdatacache.put('mykey', {a:1, b:"two", c:true}, function(err, data) {
  bluemixdatacache.get('mykey', function(err, data) {
    console.log("Got", data);
  });
});
0.1.2

10 years ago

0.1.1

10 years ago

0.1.0

10 years ago

0.0.6

10 years ago

0.0.5

10 years ago

0.0.4

11 years ago

0.0.3

11 years ago

0.0.2

11 years ago

0.0.1

11 years ago