1.2.0 • Published 8 years ago

memqueue v1.2.0

Weekly downloads
2
License
GPL-3.0
Repository
github
Last release
8 years ago

MemQueue

Build Status Code Climate Test Coverage Issue Count Dependencies Checker Join the chat at https://gitter.im/nachonerd/memqueue

NPM

Description

This NodeJs library is an implementation of queue with memcached.

Installation

npm install memqueue

Usage

var MemQueue = require('memqueue');

console.info("Creating Queue...");
try {
    // create a new queue
    var queue = new MemQueue("myqueue", 'localhost:11213');
} catch (e) {
    console.error("Creation Fail: "+e.message);
}

var element = "element"+Math.floor((Math.random()*10000));

console.info("Pushing first element: "+element);
// push an element into the queue.
queue.push(element, 10, function (err) {
    if (err) {
        console.error("Push Fail: "+err);
    }
    console.info("Retrieveing last element");
    // retrieve the previously pushed object .
    queue.pop(function (err, data) {
        if (err) {
            console.error("Pop Fail: "+err);
        }
        console.info("The last element was: "+data);
        // end memcached connection.
        queue.end();
    });
});

Methods

Kind: global class
Api: public

new MemQueue(key, locations, options)

Constructor

ParamTypeDescription
keyMixedKey String or Number
locationsMixedArray, string or object with servers
optionsObjectOptions

push(value, lifetime, callback) ⇒ void

Push

Stores a new value in Memqueue. Emits: push
Api: public

ParamTypeDescription
valueMixedEither a buffer, JSON, number or string that you want to store.
lifetimeNumberhow long the data needs to be stored measured in seconds
callbackfunctionthe callback

pop(callback) ⇒ void

Pop

Retrieve Last value from memqueue. Emits: pop, empty Api: public

ParamTypeDescription
callbackfunctionthe callback

end() ⇒ void

End

Finish memcached connection.

Api: public

For more information see Documentation

License

The driver is released under the GPL-3.0 license. See the LICENSE for more information.

1.2.0

8 years ago

1.1.0

8 years ago

1.0.0

8 years ago

0.0.3

8 years ago

0.0.2

8 years ago

0.0.1

8 years ago