Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to connect AWS elasticache redis from Node.js application?

How to connect AWS elasticache redis from Node.js application ?

like image 671
Dev7867 Avatar asked Dec 08 '25 08:12

Dev7867


1 Answers

You're connecting to Redis. The fact that it's a managed AWS service is not really that important in this respect.

So, use a Node.js package that implements a Redis client interface, for example:

  • redis
  • node-redis
like image 143
jarmod Avatar answered Dec 09 '25 21:12

jarmod