AWS 通过 ElastiCache 服务提供 Redis 支持。我的问题是,我可以使用以下命令从节点连接到 AWS Elasticache 上的 Redis:
var client = require('redis').createClient(6379, 'elastichache endpoint string', {no_ready_check: true});
还是我必须使用 NodeJS AWS 开发工具包?
我意识到我可以在 EC2 实例上设置自己的 Redis 服务器,但我想使用 ElastiCache。这可能吗?