Redis
 sql >> Baza danych >  >> NoSQL >> Redis

Jak połączyć się z klastrem ElastiCache za pomocą node.js

Udostępnianie kodu przyszłym czytelnikom:

var RedisClustr = require('redis-clustr');
var RedisClient = require('redis');
var config = require("./config.json");

var redis = new RedisClustr({
    servers: [
        {
            host: config.redisClusterHost,
            port: config.redisClusterPort
        }
    ],
    createClient: function (port, host) {
        // this is the default behaviour
        return RedisClient.createClient(port, host);
    }
});

//connect to redis
redis.on("connect", function () {
  console.log("connected");
});

//check the functioning
redis.set("framework", "AngularJS", function (err, reply) {
  console.log("redis.set " , reply);
});

redis.get("framework", function (err, reply) {
  console.log("redis.get ", reply);
});



  1. Redis
  2.   
  3. MongoDB
  4.   
  5. Memcached
  6.   
  7. HBase
  8.   
  9. CouchDB
  1. pipelining vs transakcja w redis

  2. jaka jest najlepsza strategia synchronizacji danych między bazą danych a pamięcią podręczną redis?

  3. Sugestia Redis dotycząca wyboru typu danych

  4. implementacja pamięci podręcznej poza procesem przy użyciu Redis w systemie Windows Azure

  5. skonfiguruj autoryzację redis na sidekiq