bookshelf-cache-redis

1.2.1 • Public • Published

Bookshelf Cache Redis

🔥 A robust, performance-focused caching solution for Bookshelf based on top of Redis.

Installation

cd myProject/
$ npm install bookshelf-cache-redis --save

Usage

import config from './knexfile';
import knex from 'knex';
import Bookshelf from 'bookshelf';
import redisCache from 'bookshelf-redis-cache';
 
const bookshelf = Bookshelf(knex(config));
 
bookshelf.plugin(redisCache);

You can pass the exact same parameters on the fetchCache and fetchAllCache methods as you will do with fetch and fetchAll. However, you need to specify an unique serial key for each request.

 
Car
 .forge(params)
 .fetchCache({
   serial: 'car_fetch',
   withRelated: ['engine']
 })
 .orderBy('-productionYear') // Same as .orderBy('cars.productionYear', 'DESC')
 .then(function (results) {
    console.log(results);
 });

Dependents (0)

Package Sidebar

Install

npm i bookshelf-cache-redis

Weekly Downloads

2

Version

1.2.1

License

MIT

Last publish

Collaborators

  • tdfka_rick
  • markkaylor
  • marc-roig-strapi
  • lauriejim
  • pierreburgy
  • aurelsicoko
  • alexandrebodin
  • convly