项目作者: codyjdalton

项目描述 :
Simple, in-memory, caching module
高级语言: JavaScript
项目地址: git://github.com/codyjdalton/simple-stash.git
创建时间: 2017-08-19T00:30:22Z
项目社区:https://github.com/codyjdalton/simple-stash

开源协议:MIT License

下载


Build Status Coverage Status npm version

Simple Stash

Simple in-memory caching for Javascript.

Installation

```{r, engine=’shell’}
$ npm install simple-stash —save

  1. [View on NPM](https://www.npmjs.com/package/simple-stash)
  2. ## Usage
  3. ### Get an item from memory
  4. ```javascript
  5. const cache = require('simple-stash');
  6. const data = [
  7. {
  8. id: 'test-uuid-1',
  9. name: 'John Smith'
  10. },
  11. {
  12. id: 'test-uuid-2',
  13. name: 'Jane Miller'
  14. }
  15. ];
  16. cache.set('users', data);
  17. const customer = cache.get('users:id:test-uuid-1');
  18. console.log(customer);

Logs:

  1. {
  2. "id": "test-uuid-1",
  3. "name": "John Smith"
  4. }

Get multiple items from memory

  1. const cache = require('simple-stash');
  2. const data = [
  3. {
  4. id: 'test-uuid-1',
  5. name: 'John Smith'
  6. },
  7. {
  8. id: 'test-uuid-2',
  9. name: 'John Smith'
  10. },
  11. {
  12. id: 'test-uuid-3',
  13. name: 'Jane Miller'
  14. }
  15. ];
  16. cache.set('users', data);
  17. const customers = cache.getAll('users:name:John Smith');
  18. console.log(customers);

Logs:

  1. [
  2. {
  3. "id": "test-uuid-1",
  4. "name": "John Smith"
  5. },
  6. {
  7. "id": "test-uuid-2",
  8. "name": "John Smith"
  9. }
  10. ]

Clear the cache

You can also remove all items from storage.

  1. cache.clear();

Versioning

We use SemVer for versioning. For the versions available, see the tags on this repository.