我很想知道哪些命令允许我使用 ASP.NET 开发工具包向 Amazon ElasticCache 写入和读取数据。我查看了在线文档,但无法弄清楚它是如何完成的。
我在代码中所做的:我在 web.config 中创建了密钥来存储 Id 和 Access 密码。
AmazonElastiCacheClient client = new AmazonElastiCacheClient(ElasticCache_Id, ElasticCache_Pass);
初始化 AmazonElasticCacheClient 对象并传递凭证字符串。
我需要一个示例代码来演示如何放置数据以及如何从 ElasticCache 集群中检索数据。谢谢。