Coder Social home page Coder Social logo

react-native-cache's Introduction

react-native-cache

LRU cache built on top of React Native's AsyncStorage (or included MemoryStore) and automatic pruning of least recently used items.

Installation

  • Run the following command.
npm install --save react-native-cache
  • Import the library.
import { Cache } from "react-native-cache";

Usage

You initialize a cache using the following.

var cache = new Cache({
    namespace: "myapp",
    policy: {
        maxEntries: 50000
    },
    backend: AsyncStorage
});

Multiple caches can be mantained in an application by instantiating caches with different namespaces.

Setting an item in the cache

cache.setItem("hello", "world", function(err) {
    // key 'hello' is 'world' in cache
});

Get an item in the cache

cache.getItem("key1", function(err, value) {
    console.log(value);
    // 'hello'
});

Getting an item from the cache also moves it to the end of the LRU list: it will be evicted from the cache last.

Delete an item from the cache

cache.removeItem("key1", function(err) {
    // 'key1' is no more.
});

Peeking at an item in the cache

You can also peek at an item in the cache without updating its position in the LRU list:

cache.peekItem("key1", function(err, value) {
    // 'world'
});

Getting all of the elements in the cache

You can look at all of the elements in the cache without updating its position in the LRU list:

cache.getAll(function(err, entries) {
    // {
    //     "key1": { "value": 42 }
    //     "key2": { "value": 2 }
    //     ...
    // }
});

Clearing all of the elements in the cache

You can also clear all of the items in the cache with:

cache.clearAll(function(err) {
    // the whole cache is cleared now.
});

For more usage examples, see the tests.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.