sequelize-transparent-cache-ioredis
ioredis adaptor for sequelize-transparent-cache.
Stores sequelize objects in redis using ioredis client.
Example usage
const Redis = const redis = const RedisAdaptor = const redisAdaptor = client: redis namespace: 'model' // optional lifetime: 60 * 60 // optional
Constructor arguments
Param | Type | Required | Description |
---|---|---|---|
client |
ioredis instance | yes | Configured ioredis instance |
namespace |
string | no | Prefix for all keys |
lifetime |
integer | no | Keys lifetime, seconds |
Storing format
Each object stored as single JSON string. Namespace delimeter is ":".
Key | Value |
---|---|
<namespace>:<modelName>:<objectId> |
{JSON string} |
For more info see sequelize-transparent-cache