@kokosro/stm
v1.1.0
Published
Redis Short Term Memory
Downloads
2
Readme
@kokosro/stm
simple Short Term Memory.
Usage
const Stm = require('@kokosro/stm')
const stm = new Stm(redisurl);
stm.connect().then(()=>{
stm.set('somevar', { info })
.then(()=>{
stm.get('somevar').then(console.log);
});
});