toshihiko-redis
v0.0.8
Published
The redis support for Toshihiko as an addon
Downloads
6
Readme
Toshihiko-Redis
The redis support for Toshihiko as an addon.
Installation
$ npm install toshihiko-redis
How to Use
When you define a Toshihiko, you could pass the object into cache
option:
var T = require("toshihiko");
var toshihiko = new T.Toshihiko("database", "username", "", {
cache: {
name: "redis",
servers: "localhost:6379",
options: { prefix: "_" }
}
});
name
must beredis
and then Toshihiko will search for the packagetoshihiko-redis
.
servers
may be a string for the server addresses.
Otherwise, you may create this object by yourself and pass the created object into cached:
var Redis = require("toshihiko-redis");
var object = Redis.create(SERVRES, OPTIONS);
var toshihiko = new T.Toshihiko(DATABASE, USERNAME, PASSWORD, {
cache: object
});
or
var Redis = require("toshihiko-redis");
var object = new Redis(SERVRES, OPTIONS);
var toshihiko = new T.Toshihiko(DATABASE, USERNAME, PASSWORD, {
cache: object
});
DEBUG
use dubug lib
DEBUG=toshihiko-redis