3

我很想知道哪些命令允许我使用 ASP.NET 开发工具包向 Amazon ElasticCache 写入和读取数据。我查看了在线文档,但无法弄清楚它是如何完成的。

我在代码中所做的:我在 web.config 中创建了密钥来存储 Id 和 Access 密码。

AmazonElastiCacheClient client = new AmazonElastiCacheClient(ElasticCache_Id, ElasticCache_Pass);

初始化 AmazonElasticCacheClient 对象并传递凭证字符串。

我需要一个示例代码来演示如何放置数据以及如何从 ElasticCache 集群中检索数据。谢谢。

4

1 回答 1

1

看起来您只能通过 AWS 开发工具包管理弹性缓存集群。

您可以使用任何 memcached 客户端来读取和写入 elasticcache,因为这是底层技术。

这是一个例子: http: //geekswithblogs.net/shaunxu/archive/2010/04/07/first-round-playing-with-memcached.aspx

于 2012-11-30T05:12:09.187 回答