uber-archive / request-redis-cache

Make requests and cache them in Redis
Other
2 stars 2 forks source link

request-redis-cache Build status

Fault tolerant pass-through cache for generic requests backed by Redis

We attempt to serve data cached by Redis. If that data is not found, we fetch it from the server via an externally provided function and cache its response.

If Redis is down or misbehaving, errors are emitted but we continue to interact with the uncached function as if we were talking to the service directly.

This was built along side backbone-api-client to make transparently caching responses from API clients easier.

Getting Started

Install the module with: npm install request-redis-cache

// Generate a new cache
var redis = require('redis');
var RequestRedisCache = require('request-redis-cache');
var redisClient = redis.createClient();
var cache = new RequestRedisCache({
  redis: redisClient
});

// Fetch some data from a fake client
cache.get({
  cacheKey: 'hello-world',
  cacheTtl: 100, // seconds
  // Dynamic `options` to pass to our `uncachedGet` call
  requestOptions: {},
  // Action to use when we cannot retrieve data from cache
  uncachedGet: function (options, cb) {
    // Simulate data coming back from an API client (should be already parsed)
    cb(null, {hello: 'world'});
  }
}, function handleData (err, data) {
  // Look at the data in our cache, '{"hello":"world"}'
  redisClient.get('hello-world', console.log);

  // Re-retrieve the data
  cache.get({
    cacheKey: 'hello-world',
    cacheTtl: 100,
    requestOptions: {},
    uncachedGet: function (options, cb) {
      cb(new Error('This will not be reached since the data is cached'));
    }
  }, console.log); // {hello: 'world'}
});

Documentation

request-redis-cache exports the constructor RequestRedisCache as its module.exports.

RequestRedisCache(options)

Constructor for a new cache. RequestRedisCache extends from an EventEmitter and invokes its constructor during the instantiation process.

cache#get(params, cb)

Method to retrieve data from Redis or a server depending of it has been cached/not.

If there are any errors while interacting with Redis, then they will be emitted via error channel. If these are handled (via .on/.once), then get will still function by talking to the server.

Emitted errors

Errors that are emitted will originally come from redis or params.parse. To be nice, we add on a few extra data points

Contributing

In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint via grunt and test via npm test.

License

Copyright (c) 2014 Uber Technologies, Inc.

Licensed under the MIT license.