All Projects → nswbmw → Koa Redis Pool

nswbmw / Koa Redis Pool

Redis middleware for koa, support connection pool.

Programming Languages

javascript
184084 projects - #8 most used programming language

koa-redis-pool

koa-redis-pool is a redis middleware for koa, support connection pool.

Install

npm i koa-redis-pool --save

Usage

app.use(redisPool({
  host: 'localhost',
  port: 6379,
  max: 100,
  min: 1,
  timeout: 30000,
  log: false,
  db: 0,
  ... // https://github.com/luin/ioredis/blob/master/API.md#new-redisport-host-options
}));

or

app.use(redisPool({
  url: 'localhost:6379', //  if exist, ignore `host`, `port`, `password` and `db`.
  ...
}));

or

app.use(redisPool('localhost:6379'));

Example

'use strict';

var koa = require('koa');
var redisPool = require('./');

var app = koa();

app.use(redisPool());

app.use(function* (next) {
  yield this.redis.set('name', 'nswbmw');
  yield* next;
  this.body = yield this.redis.get('name');
});

app.listen(3000);

License

MIT

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].