npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

request-redis-cache

v0.1.0

Published

Make requests and cache them in Redis

Downloads

18

Readme

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.

  • params Object, container for parameters
    • redis Redis, instance of redis to cache via
    • stringify Function, optional serializer for when saving data to Redis
      • By default, this is JSON.stringify
      • stringify will receive data from uncachedGet and is expected to return a String
    • parse Function, optional deserializer for restoring data from Redis
      • By default, this is JSON.parse
      • parse will receive a String and is expected to restore via same format that uncachedGet would callback with

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.

  • params Object, container for parameters
    • cacheKey String, key to retrieve/save data under
    • cacheTtl Number, seconds to cache information for
    • requestOptions Mixed, parameters to be used in uncachedGet
    • uncachedGet Function, (options, cb) function to resolve external data
      • options Mixed, data passed in via requestOptions
      • cb Function, error-first function, (err, data), to callback with data
        • err Error|null, error if any occurred during retrieval
        • data Mixed, data retrieved from external call
      • We choose this split structure of requestOptions/uncachedGet because it is expected that uncachedGet remains generic while requestOptions can shift from case to case
  • cb Function, error-first callback, (err, data), to receive fetched data
    • err Error|null, error if any occurred during retrieval
    • data Mixed, data retrieved from cache/external call
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

  • action String, human explanation of what went wrong
  • cacheKey String, key we were using with Redis
  • cacheTtl Number, TTL we were using with Redis
  • info Mixed, value we retrieved fia uncachedGet
    • This can only be found when params.stringify cannot stringify the data
  • infoStr String, stringified form of data from uncachedGet/Redis
    • This can only be found when we are interacting with to be cached or already cached data

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.