0.4.0 • Published 8 years ago

koa-redis-pool v0.4.0

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

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

0.4.0

8 years ago

0.3.1

9 years ago

0.3.0

9 years ago

0.2.0

10 years ago

0.1.0

10 years ago