5.1.9 • Published 5 months ago

qiao-cache v5.1.9

Weekly downloads
1
License
MIT
Repository
github
Last release
5 months ago

qiao-cache

npm version npm downloads

nodejs 下 cache 能力

usage

// commonjs
const { cache } = require('qiao-cache');

// es6
import { cache } from 'qiao-cache';

api

cache

// set
cache('test', 'hello');

// set ttl
cache('test', 'hello', 10);

// get
const s = cache('test');
console.log(s); // hello

// del
cache('test', null);
console.log(cache('test')); // undefined
5.0.1

7 months ago

5.1.9

5 months ago

5.0.0

8 months ago

4.7.6

11 months ago

4.8.3

11 months ago

4.5.3

1 year ago

4.5.2

1 year ago

4.5.1

1 year ago

3.7.3

1 year ago

3.5.7

2 years ago

3.1.0

2 years ago

3.0.1

2 years ago

3.0.6

2 years ago

1.0.0

2 years ago

0.2.0

2 years ago

0.1.7

3 years ago

0.1.9

2 years ago

0.1.6

3 years ago

0.1.5

3 years ago

0.1.4

3 years ago

0.1.0

3 years ago

0.1.2

3 years ago

0.1.1

3 years ago

0.0.9

3 years ago

0.0.8

3 years ago

0.1.3

3 years ago

0.0.7

3 years ago

0.0.3

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.6

3 years ago

0.0.2

5 years ago