A Seneca.js plugin
![]() |
This open source module is sponsored and supported by Voxgig. |
|---|
npm install seneca
npm install seneca-cache
This code snippet sets a value and then retrieves it.
var seneca = require('seneca')();
seneca.use('cache');
seneca.ready(function(err) {
seneca.act({role: 'cache', cmd: 'set', key: 'k1', val: 'v1'}, function(err) {
seneca.act({role: 'cache', cmd: 'get', key: 'k1'}, function(err, out) {
console.log('value = ' + out)
});
});
});
require('seneca')()
.use('seneca-cache')
See test/ for usage examples.
This module is a plugin for the Seneca framework. It provides a set of common caching actions (get, set etc.), backed by lru-cache.
It also exposes some lru-cache specific actions (peek, has, keys, values, reset).
By moving cache operations into Seneca, you can change your cache implementation or business rules at a later point. For example, you might decide to send certain kinds of keys to a different cache mechanism, such as redis.
If you're using this module and need help, you can:
- Post a github issue
- Tweet to @senecajs
- Ask on the Gitter
micro.expiry: number 11111
Set plugin options when loading with:
seneca.use('cache', { name: value, ... })
Note: foo.bar in the list above means
{ foo: { bar: ... } }
- role:cache,cmd:add
- role:cache,cmd:clear
- role:cache,cmd:decr
- role:cache,cmd:delete
- role:cache,cmd:get
- role:cache,cmd:incr
- role:cache,cmd:micro
- role:cache,cmd:micro,get:stats
- role:cache,cmd:set
- role:cache,get:native
- role:lrucache,cmd:has
- role:lrucache,cmd:keys
- role:lrucache,cmd:peek
- role:lrucache,cmd:reset
- role:lrucache,cmd:values
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
No description provided.
Seneca has a common caching API with the following actions:
role:cache, cmd:setstore a value - key and val arguments requiredrole:cache, cmd:getretreive a value - key argument is requiredrole:cache, cmd:addstore a value, only if the key does not exist - key and val arguments requiredrole:cache, cmd:deletedelete a value - key argument is required, no error if key does not existrole:cache, cmd:incrincrement a value - key and val (integer) arguments requiredrole:cache, cmd:decrdecrement a value - key and val (integer) arguments required
All caching plugins, including this one, implement this action API.
You can use any of the options from the lru-cache module directly as options to this plugin:
seneca.use('cached', {
lrucache: {
max: 1000,
maxAge: 1000 * 60 * 60,
length: function(n) {return n.length}
}
});
The Senecajs org encourages open participation. If you feel you can help in any way, be it with documentation, examples, extra testing, or new features please get in touch.
npm run test
Implements the Common Cache API for Seneca.

