1.0.9 • Published 1 year ago

loopback-redis-cache-params v1.0.9

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

loopback-redis-cache

Redis cache mixin for loopback.io, Fork to project, add prefix in redis Fork from https://www.npmjs.com/package/loopback-redis-cache

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 i loopback-redis-cache-params --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.

PluginREADME
redishttps://github.com/NodeRedis/node_redis/blob/master/README.md
redis-delete-patternhttps://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

1.0.9

1 year ago

1.0.8

1 year ago

1.0.7

1 year ago

1.0.6

1 year ago

1.0.5

1 year ago

1.0.4

1 year ago

1.0.3

1 year ago

1.0.2

2 years ago

1.0.1

2 years ago

1.0.0

2 years ago