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 🙏

© 2026 – Pkg Stats / Ryan Hefner

sequelize-cacher

v2.0.1

Published

Caching module for sequelize queries

Readme

sequelize-cacher test

Small fluent interface for caching sequelize database query results in redis/memcached more easily. Simply put, this is a wrapper around sequelize retrieval methods that will automatically check in the configured redis/memcached instance for a value (based on a hash of the query and model name), then retrieve from the database and persist in redis/memcached if not found. It is promise based, so it will resemble sequelize for the most part, and be co/koa friendly.

This project is a fork of sequelize-redis-cache by rfink, but with a new layer of cache supporting also memcached!

Installation


npm install sequelize-cacher

Usage


const Sequelize = require('sequelize');
const initCache = require('sequelize-cacher');
const redis = require('redis');
// const Memcached = require('memcached');

const cacheEngine = redis.createClient({ socket: { host: 'localhost', port: 6379 } });
await cacheEngine.connect(); // required as of redis v4+
// const cacheEngine = new Memcached('localhost:11211');
const db = new Sequelize('cache_tester', 'root', 'root', { dialect: 'mysql' });
const cacher = initCache(db, cacheEngine);

const cacheObj = cacher('sequelize-model-name').ttl(5);
const row = await cacheObj.find({ where: { id: 3 } });
console.log(row); // plain object
console.log(cacheObj.cacheHit); // true or false

Check the tests out for more info, but it's pretty simple. The currently supported methods are:

  • find (alias of findOne)
  • findOne
  • findAll
  • findAndCountAll
  • all (alias of findAll)
  • min
  • max
  • sum

find and all are legacy aliases kept for backward compatibility; Sequelize itself dropped those method names as of v4, so under the hood they're mapped to findOne and findAll respectively.

This library expects a Redis client from redis v4+ (already .connect()-ed before being passed in) or a client from the memcached package.

Notes

This library does not handle automatic invalidation of caches, since it currently does not handle inserts/updates/deletes/etc. I'd be in favor of someone submitting a patch to accommodate that, although I think that would be a significant undertaking.

License

MIT - roccomuso

MIT - Rekt