Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

AWS Elastic Cache Redis with C#

I couldn't find any good documentation to read redis cache items using AWS SDK. AmazonElasticCacheClient class doesn't give any method to read the information. Which class should I use to insert and read cache entries?

like image 873
Shiva Avatar asked Jan 02 '23 16:01

Shiva


1 Answers

AWS SDK is only used to manage ElastiCache, not to use it. To connect to Redis instance and read/write information you'll have to use any of third-party libraries. Official Redis documentation provides a very good list of those: https://redis.io/clients#c

like image 176
Sergey Kovalev Avatar answered Jan 05 '23 19:01

Sergey Kovalev