Skip to content

changwoolab/simple-node-cache

Repository files navigation

simple-node-cache

A simple in-memory cache for node.js

There are no type limitations. You can cache almost everything.

Installation

npm i simple-node-cache

How to use?

import { CacheManager } from 'simple-node-cache';

const cache = new CacheManager();

cache.set('key', 'value');
console.log(cache.get('key'));

Supports

set

Stores value with given key

Caution: This overrides existing value

del

Deletes value with given key

expire

Set Time To Live in seconds

get

Get value by given key

Returns undefined if there is no key

clear

Deletes all keys

size

Get current number of entries

keys

Get all cache keys

About

A simple in-memory cache manager for node.js

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published