5

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?

Shiva
  • 105
  • 1
  • 9

1 Answers1

10

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

Sergey Kovalev
  • 9,110
  • 2
  • 28
  • 32