Giter Club home page Giter Club logo

redis-sentinel-js's Introduction

Redis-Sentinel (js)

Redis Sentinel Client for Node.js

Redis-Sentinel is a wrapper for the node redis client designed for use with a redis sentinel cluster. The Sentinel Monitor subscribes to Sentinel Pub/Sub and maintains the state of redis server clusters. A single client abstraction is provided to access all instances in a given named cluster. If the master instance of a cluster fails, the Master Client enters a fallback state, queuing write commands and executing read commands on the first available slave and untill a new master has been elected by the sentinels.

Create a Sentinel Monitor

require('redis-sentinel-js');
var sentinel_monitor = new Monitor(options);
sentinel_monitor.once('sync', function do_stuff(){...});
sentinel_monitor.sync();

options

options.hosts* => ['localhost:26379', '127.0.0.1:26380', ...] The addresses to the sentinels in this cluster

options.timeout => 5000 The timeout for write requests waiting for execution during failsafe state

*required

Get a Master Client

var mc = sentinel_monitor.get_client('mymaster');
mc.set('x', 5, function(error, response){...} );

Master clients are singletons which extend the node redis client.

redis-sentinel-js's People

Contributors

stantonwjones avatar liebo avatar

Watchers

James Cloos avatar  avatar

redis-sentinel-js's Issues

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.