Redis
 sql >> Cơ Sở Dữ Liệu >  >> NoSQL >> Redis

Cách kết nối với cụm ElastiCache bằng node.js

Chia sẻ mã cho những người đọc trong tương lai:

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. Sidekiq không tìm thấy bản ghi cho Rails Active Job

  2. Redis ::CommandError:ERR Client đã gửi AUTH, nhưng không có mật khẩu nào được đặt

  3. Cách tạo db (key_space) trong redis

  4. Redis, làm thế nào để tăng tất cả các điểm số của một zset với ZINCRBY?

  5. Redis cluster failover:slave sẽ không trở thành master