rfink / sequelize-redis-cache

Small fluent interface for caching sequelize database query results in redis more easily
MIT License
174 stars 47 forks source link

Fixed README.md #26

Closed Naoto-Ida closed 7 years ago

Naoto-Ida commented 7 years ago

I ran the example but realized that there was a typo in the README.md.

var initCacher = require('sequelize-redis-cache');
var cacher = initCache(db, rc);

should be:

var initCacher = require('sequelize-redis-cache');
var cacher = initCacher(db, rc);
rfink commented 7 years ago

Thanks!