[REDIS] Node.js를을 사용하여 클러스터 ElastiCache에 연결하는 방법
REDISNode.js를을 사용하여 클러스터 ElastiCache에 연결하는 방법
우리는 9 개 노드와 ElastiCache 레디 스 클러스터를 가지고있다. 우리가 정상 레디 스 구현을 사용하여 연결을 시도 할 때, 일부 이동 된 오류가 발생합니다
@Miller에 따라 재시도 전략 방법을 시도했습니다. 또한 불안정하고 안정 (가난한 사람) 구현과 RedisCluster를 시도.
이러한 구현의 아무도가 작동하지 않습니다. 모든 제안을 기쁘게?
해결법
-
==============================
1.
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); });
from https://stackoverflow.com/questions/43872852/how-to-connect-to-elasticache-cluster-using-node-js by cc-by-sa and MIT license
'REDIS' 카테고리의 다른 글
[REDIS] 봄 - 데이터 - 레디 스를 사용하여 레디 스 멀티 Exec에서 구현하는 방법 (0) | 2020.01.18 |
---|---|
[REDIS] 어떻게 계층 적 데이터를 저장하는 데 레디 스를 사용 하는가? (0) | 2020.01.18 |
[REDIS] Predis에서 MATCH 옵션 SCAN을 사용하는 방법 (0) | 2020.01.18 |
[REDIS] 각 그룹의 Redisearch 집계 반환 상위 5 (0) | 2020.01.18 |
[REDIS] 레디 스 KEYSPACE 알림 flushdb와 (0) | 2020.01.18 |