2.0.0 • Published 6 years ago

easy-cache-manager v2.0.0

Weekly downloads
4
License
ISC
Repository
github
Last release
6 years ago

easy-cache-manager

This package allows you to easily manage your application cache, using one of two methods: local memory and MemCached. Note: Redis service will be soon provided

Instalation

npm install easy-cache-manager [--save|-g]

Setting up

Currently there is two modes of cache that you can use: local memory and memcached. You can choose which one are you going to use.

1. Local Memory

const ECM = require('easy-cache-manager');
const EasyCacheManager = new ECM ({
    type: 'Local memory',
    /* THESE PARAMETERS ARE OPTIONAL
        timeout: <timeout in milliseconds>,
        prefix: <String with the prefix for all objects in cache>
    */
});

Note: If you do not provide a timeout parameter, the object will be in memory as long as the process is running.

2. Memcached

const ECM = require('easy-cache-manager');
const EasyCacheManager = new ECM ({
    type: 'Memcached',
    /* THESE PARAMETERS ARE OPTIONAL
        endpoint: <Endpoint of Memcached.>,
        timeout: <timeout in milliseconds>,
        promise: <promise object. Default: require('bluebird')>,
        prefix: <String with the prefix for all objects in cache>
    */
});

Note: If you do not provide a timeout parameter, the object will be in memory as long as the memcached process is running. Also, if you do not provide a host parameter, the default value is localhost. It is require to have installed memcached for the host given.

Usage

There are 2 functions: get object and set object.

1. Get Object

This method return the object in cache with the given key

EasyCacheManager.getObject(key).then(function(objCache){
    // objCache can be null
}).catch(function(err){
    // connection or internal libraries error
});

2. Set object

This method sets an object in the cache service. options object is optional.

EasyCacheManager.setObject(key, object[,options]).then(function(resp){
    // resp is an 'ok' message
}).catch(function(err){
    // connection or internal libraries error
});

Options object

{
    timeout: 1494277474 // Unix standar
}

Prefix

You can define a global prefix and the library will add it to all the object keys.

Example

const ECM = require('easy-cache-manager');
const EasyCacheManager = new ECM ({
    type: 'Memcached',
    timeout: 1494277474,
    prefix: 'prefix_'
});
2.0.0

6 years ago

1.2.0

7 years ago

1.1.1

7 years ago

1.0.22

7 years ago

1.0.21

7 years ago

1.1.0

7 years ago

1.0.20

7 years ago

1.0.19

7 years ago

1.0.18

7 years ago

1.0.17

7 years ago

1.0.16

7 years ago

1.0.15

7 years ago

1.0.14

7 years ago

1.0.13

7 years ago

1.0.12

7 years ago

1.0.11

7 years ago

1.0.10

7 years ago

1.0.9

7 years ago

1.0.8

7 years ago

1.0.7

7 years ago

1.0.6

7 years ago

1.0.5

7 years ago

1.0.4

7 years ago

1.0.3

7 years ago

1.0.2

7 years ago

1.0.1

7 years ago

1.0.0

7 years ago