2

我必须连接到 AWS 中的 redis 集群。任何人都可以指导如何使用 ioredis 和节点 js 连接到 redis 集群。将有 1 个 master 和 3 个 slave。提前致谢。

4

1 回答 1

2

您可以先阅读文档:“访问 Amazon VPC 中的 ElastiCache 集群的访问模式”

正如您在文档中看到的,您的解决方案将取决于是否在同一 VPC 中运行。

解决连接问题后,您可以转到ioredis 文档,您可以在其中看到一个非常简单的示例。

var Redis = require('ioredis');
var redis = new Redis();

redis.set('foo', 'bar');
redis.get('foo', function (err, result) {
  console.log(result);
});

// Or using a promise if the last argument isn't a function
redis.get('foo').then(function (result) {
  console.log(result);
});

// Arguments to commands are flattened, so the following are the same:
redis.sadd('set', 1, 3, 5, 7);
redis.sadd('set', [1, 3, 5, 7]);

// All arguments are passed directly to the redis server:
redis.set('key', 100, 'EX', 10);
于 2018-07-18T16:54:49.103 回答