带有节点 js 的 AWS ioredis

AWS ioredis with node js

我必须连接到 AWS 中的 redis 集群。谁能指导如何使用 ioredis 和节点 js 连接到 redis 集群。将有一个主人和三个奴隶。 提前致谢。

您可以从阅读文档开始:"Access Patterns for Accessing an ElastiCache Cluster in an Amazon VPC"

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

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

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);