Coder Social home page Coder Social logo

loopback-redis-cache's Introduction

loopback-redis-cache

Redis cache mixin for loopback.io

Features

  • Cache every GET request using only one get option.
  • Different Redis server for each model with fallback to config.json Redis server.
  • Invalidate cache on every create, update or delete.

Installation

loopback-redis-cache requires Node.js v4+ to run.

Install using npm

$ npm install loopback-redis-cache --save

Add to /server/config.json

  "redis": {
    "host": "127.0.0.1",
    "password": "your-redis-password"
  }

Add to /server/model-config.json

    "mixins": [
      ...
      "../node_modules/loopback-redis-cache"
      ...
    ]

Plugins

loopback-redis-cache is currently extended with the following plugins.

Plugin README
redis [https://github.com/NodeRedis/node_redis/blob/master/README.md]
redis-delete-pattern [https://github.com/uber-archive/redis-delete-pattern/blob/master/README.md]

How to use it

At your model (using config.json settings)

  "mixins": {
     "Rediscache": {}      
  }

At your model (using external redis server)

  "mixins": {
     "Rediscache": {
       "client": {
         "host": "redis.server.ip.address",
         "password": "redis-password"
       }
     }    
  }

Example http://0.0.0.0:3000/api/games?cache=120 cache value in seconds

AngularJS SDK example

  Category.findOne({
      filter: {
          where: {
              categoryId: $scope.Id
          }
      },
      cache: 123
  }, function (item) {
      console.log(item);
  }, function (err) {
      console.log(err);
  });

See also


Host your web site easily, instantly and FREE PHP, MySQL and free SSL One Click WordPress Installation! https://hostdrop.eu

loopback-redis-cache's People

Contributors

vkatsar avatar gabrielht avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.