aws elasticache redis set and get

时间:2015-07-13 12:54:51

标签: amazon-web-services redis amazon-elasticache

我是AWS-SDK的新手,我在EC2实例上运行node.js应用程序。

我正在尝试在node.js应用程序中使用ElastiCache-Redis。但是,我找不到ElastiCache的API来进行基本的Redis调用。下面的url没有提供任何Redis命令。

http://docs.aws.amazon.com/AWSJavaScriptSDK/latest/AWS/ElastiCache.html#addTagsToResource-property

如何在aws-sdk中向ElastiCache(Redis)发出Redis命令?

1 个答案:

答案 0 :(得分:10)

ElastiCache API用于启动,停止和启动配置Redis和Memcached实例。它不用于与这些实例通信。
要向Redis或Memcached发送命令,您需要使用普通客户端,以下是Redis的Node.js客户端列表:http://redis.io/clients#nodejs