Skip to content

trek10inc/lambda-local-cache

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

12 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

lambda-local-cache for JS objects

Installation :

npm install lambda-local-cache --save

How to use

const lambdaLocalCache = require( 'lambda-local-cache' );

let collectionName = 'COLLECTION_NAME'

let options = {
    indexes: ['index1', 'index2'], // first index name is treated as primary index
    expire : 5 // in minutes
};


let cache = new lambdaLocalCache(collectionName, options);


// METHODS

cache.set(value, expire);

cache.get('key', 'indexName');

cache.remove('key', 'indexName');

cache.clear();


## License

MIT

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published