使用 .net SDK 在 AWS Elasticache Redis 集群中存储 cache/session(键和值)
Storing cache/session(Key and Value) in AWS Elasticache Redis cluster using .net SDK
我必须使用 AWS .net SDK 将会话日志(以键、值的形式)存储在 Elasticache Redis 集群中。
但我只能在.net SDK 中看到与memcached 集群相关的方法。但我需要将日志存储在 RedisCluster 中。
* 谁能建议使用 AWS .net SDK 在 Redis Clster 中存储日志的步骤。
谢谢,
普拉卡什
对于 AWS 上的 Memcache 和 Redis 集群,您不会read/write 使用 AWS SDK 获取数据。就像 RDS 上的数据库一样,AWS SDK 可以帮助您管理 servers/instances。它们不用于数据访问。
要访问 ElastiCache 中的 Redis 数据,您可以使用任何公开可用的 C# Redis 客户端库:
我必须使用 AWS .net SDK 将会话日志(以键、值的形式)存储在 Elasticache Redis 集群中。 但我只能在.net SDK 中看到与memcached 集群相关的方法。但我需要将日志存储在 RedisCluster 中。 * 谁能建议使用 AWS .net SDK 在 Redis Clster 中存储日志的步骤。
谢谢, 普拉卡什
对于 AWS 上的 Memcache 和 Redis 集群,您不会read/write 使用 AWS SDK 获取数据。就像 RDS 上的数据库一样,AWS SDK 可以帮助您管理 servers/instances。它们不用于数据访问。
要访问 ElastiCache 中的 Redis 数据,您可以使用任何公开可用的 C# Redis 客户端库: