Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
ttl-mem-cache
Advanced tools
A in memory time to live cache with streaming support.
$ npm install ttl-mem-cache
Set an object and retrieve it.
const Cache = require('ttl-mem-cache');
const cache = new Cache();
cache.set('a', {foo: 'bar'});
const obj = cache.get('a'); // returns {foo: 'bar'}
This is a in memory time to live key/value cache with streaming support. Items are
not pro-actively pruned out as they age but expires when they are too old when touched.
In other words; this module does not use setTimeout()
or simmilar methods internally.
There is no restrictions on the values stored in the cache and there is no maximum limit of the amount of items in the cache. Whan that is said, the intention of this module is to act as a simple key/value cache where one need to cache small to medium amounts of data.
Create a new Cache instance.
const Cache = require('ttl-mem-cache');
const cache = new Cache(options);
An Object containing misc configuration. The following values can be provided:
Number
- Default max age in milliseconds all items in the cache should be cached before expiering.Boolean
- If expired items in cache should be returned when pruned from the cache. Default: false
.Boolean
- If emitted set
event and stream should contain both old and new value. Default: false
.String
- Give the instanse a unique identifier. Default: hash
If an option Object with a maxAge
is not provided all items in the cache will by
default cached for 5 minutes before they expire.
Items can be cached forever by setting maxAge
to Infinity
. Items cached forever
can be overwritten and manually deleted.
Pruning of items from the cache happend when they are touched by one of the methods
for retrieving (.get()
and .entries()
) items from the cache. By default pruning
happens before the method returns a value so if an item have expired, null
will be
returned for expired items. By setting stale
to true
, these methods will return
the pruned item(s) before they are removed from the cache.
Internally the cache has a unique ID created each time its instantiated. This ID is
used to tell the origin of an cached item when streaming. The id
will override
this generated ID. When using this, be carefull to not provide the same ID to multiple
instances of the cache.
The Cache instance have the following API:
Set an item in the cache on a given key.
const cache = new Cache();
cache.set('a', {foo: 'bar'});
cache.set('b', {foo: 'xyz'}, 20 * 60 * 1000);
This method take the following arguments:
An item can be cached forever by setting maxAge
to Infinity
.
Get an item on a given key from the cache.
const cache = new Cache();
cache.set('a', {foo: 'bar'});
const obj = cache.get('a'); // returns {foo: 'bar'}
This method take the following arguments:
Triggering .get()
will check the expire on the item. If the item is older than
the max age set on it, the item will be removed from the cache and this method
will return null
unless stale
is set to true
on the constructor. Then the
expired item will be returned before its removed from the cache.
Explicitly delete an item on a given key in the cache.
const cache = new Cache();
cache.set('a', {foo: 'bar'});
cache.del('a');
This method take the following arguments:
Get all items in the cache. Returns an Array with all items.
const cache = new Cache();
cache.set('a', {foo: 'bar'});
cache.set('b', {foo: 'xyz'});
const all = cache.entries(); // returns [{foo: 'bar'}, {foo: 'xyz'}]
Triggering .entries()
will check the expire on the items. If an item is older than
the max age set on it, the item will be removed from the cache and it will not be
included in the returned value of this methid unless stale
is set to true
on the
constructor. Then the expired item will be included before its removed from the cache.
This method take the following arguments:
Triggering .entries()
will check the expire on all the items. If an item is older
than the max age set on it, the item will be removed from the cache and it will not
be part of the returned Array.
The mutator attribute can be used to change the structure of the returned items. It
takes a function which will be called with an Object with the key
and value
. This
function must return a value which then will be the value of the item in the returned
output.
const cache = new Cache();
cache.set('a', {foo: 'bar'});
cache.set('b', {foo: 'xyz'});
const all = cache.entries((item) => {
return item.value.foo;
}); // returns ['bar', 'xyz']
The advantage of using the mutator if one want to mutate the items is that the mutator is applied to each item in the same process as the expire is checked.
Iterates over all items in the cache and proactively prunes expired items.
Clears the entire cache. All items will be deleted.
Returns an Array of all items in the cache ready to be used by .load()
.
Loads an Array of items, provided by .dump()
, into the cache. If any of
the items in the loaded Array contains a key which already are in the cache
the entry in the cache will be overwritten.
If any of the entries in the loaded Array are not compatible with the format
which .dump()
exports, they will not be inserted into the cache.
Returns and Array with the keys which was inserted into the cache.
The number of items in the cache.
The Cache instance inherit from Duplex Stream. Due to this the instance emits all the events which Duplex Stream does when the streaming feature is used. Please see the documentation of Duplex Streams for further documentation.
In addition to this, the following events are emitted:
When an item is set in the cache. Emits an Object with the key
and value
of the item.
const cache = new Cache();
cache.on('set', (item) => {
console.log(item); // outputs: {key: 'a', value: {foo: 'bar'}}
});
cache.set('a', {foo: 'bar'});
If changefeed
is set to be true
on the constructor, the emitted Object will hold both
old and new value for the key. See "changelog" for further info.
When an item is disposed (deleted) from the cache. Emits the key
of the item and the item itself.
const cache = new Cache();
cache.on('dispose', (key, item) => {
console.log(key, item); // outputs: "a, {foo: 'bar'}"
});
cache.set('a', {foo: 'bar'});
cache.del('a');
When the cache is cleared.
The Cache instance is a Duplex Stream. One can stream items in and out of the cache.
Example of streaming into the cache:
const cache = new Cache();
const source = new SomeReadableStream(); // a source streaming an item on key 'a' into the cache
source.pipe(cache);
cache.get('a'); // returns the item for key 'a'
Example of streaming out of the cache:
const cache = new Cache();
const dest = new SomeWritableStream(); // a destination stream recieving items from the cache
cache.pipe(dest);
cache.set('a', {foo: 'bar'}); // pushes {foo: 'bar'} onto the writable stream
Example of streaming through the cache (all items streamed through will be kept in the cache):
const cache = new Cache();
const source = new SomeReadableStream(); // a source streaming items into the cache
const dest = new SomeWritableStream(); // a destination stream recieving items from the cache
source.pipe(cache).pipe(dest);
cache.entries(); // returns all the items streamed through the cache
With the stream API its possible to link caches together and distribute cached items between them.
const Cache = require('../');
const cacheA = new Cache();
const cacheB = new Cache();
const cacheC = new Cache();
// Link all caches together
cacheA.pipe(cacheB).pipe(cacheC).pipe(cacheA);
// Set a value in cache C
cacheC.set('foo', 'bar');
// Retrieve the same value from all caches
console.log(cacheA.get('foo'), cacheB.get('foo'), cacheC.get('foo'));
// Delete the value in cache A
cacheA.del('foo');
// The value is deleted from all caches
console.log(cacheA.get('foo'), cacheB.get('foo'), cacheC.get('foo'));
When writing to the cache, one can control what goes into the cache etc by a dedicated Object type. When reading from the cache, the stream will output the same Object type.
The Object type looks like this:
{
key: 'item key',
value: 'item value',
origin: 'cache instance ID'
}
key
defines what key the value of value
should be stored on in the cache. key
is required
and if not provided the stream will emit an error.
When writing to the cache and a Object with value
with a value is provided, it will be stored in
the cache on the provided key
. If value
is not provided or null
or undefined
on the
Object when writing to the cache, any item with a matching key
in the cache will be deleted.
When the stream emits objects each object will also have a origin
key. The value is the unique
ID of the instance the object first was emitted on the stream.
If the items you want to store in the cache does not fit your data type, its recommended to use a Transform Stream to transform it into the supported Object type.
Example:
const cache = new Cache();
const source = new SomeReadableStream(); // contains Objects like this {id: 'a', item: 'bar'}
const convert = new stream.Transform({
objectMode: true,
transform(obj, encoding, callback) {
this.push({
key: obj.id,
value: obj.item
});
callback();
}
});
source.pipe(convert).pipe(cache);
If changefeed
is set to be true
on the constructor, the emitted Object in the Readable stream
will hold both old and new value for the key. See "changelog" for further info.
If the attribute changelog
is set to true
on the constructor, some emitted events will
emit an object holding both old and new values for the key.
The emitted object looks like this:
{
key: 'a',
value: {
oldVal: 'foo',
newVal: 'bar'
}
}
Example:
const Cache = require('ttl-mem-cache');
const cache = new Cache({ changefeed: true });
cache.on('set', (item) => {
// item will be in the format above
});
cache.set('a', 'foo');
cache.set('a', 'bar');
If a key does not hold a value in cache before, oldVal
will be null
.
If a key hold a value which has expired and stale
is false
, oldVal
will be null
.
If a key hold a value which has expired and stale
is true
, oldVal
will be the old value.
This module use some native ES6 functions only found in node.js 6.x and newer. This module will not function with older than 6.x versions of node.js.
This module does not handle errors for you, so you must handle errors on whatever streams you pipe into this module. This is a general rule when programming with node.js streams: always handle errors on each and every stream.
We recommend using end-of-stream
or pump
for writing error tolerant stream code.
The MIT License (MIT)
Copyright (c) 2017 - Trygve Lie - post@trygve-lie.com
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
FAQs
A in memory time to live cache with streaming support.
We found that ttl-mem-cache demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.