0

I have to Store the session logs(in form of Key, Value) in Elasticache Redis cluster using AWS .net SDK. But I could see only memcached cluster related methods in .net SDK. But I need to store the logs in RedisCluster. * Could anyone Suggest the steps to store the logs in Redis Clster using AWS .net SDK.

Thanks, Prakash

Prakash26790
  • 727
  • 9
  • 29
  • why would that be any different from using a non-aws redis instance? – RaGe Jul 17 '17 at 16:48
  • My dev teams use https://stackexchange.github.io/StackExchange.Redis/ but there are other .net redis libraries out there. – RaGe Jul 17 '17 at 16:49

1 Answers1

2

For both Memcache and Redis clusters on AWS, you do not read/write data using the AWS SDKs. Just like databases on RDS, the AWS SDK helps you managed the servers/instances. They are not used for data access.

To access Redis data in ElastiCache, you would use any of the publicly available Redis client libraries for C#:

List of C# Clients on redis.io

Matt Houser
  • 33,983
  • 6
  • 70
  • 88