Reputation: 73
I've searched and searched and have been unable to find a tutorial / example / walkthrough with all of the above! I am trying to write a Lambda function in C# which makes use of some ElastiCache storage. I can find examples of ElastiCache access from C#, but every Library I have found referenced will not operate with .NetCore 1.0, which is what Lambda uses! Has anyone managed to do this? Many thanks.
Upvotes: 3
Views: 3348
Reputation: 667
Yes, it is possible and you're right, the information on this subject is sparse. The key is to host your Elasticache instance and Lambda Function in the same VPC. From a high level you need to:
This blog posting has a better walkthrough: http://fitsofury.blogspot.com/2018/02/aws-connect-to-elasticache-redis.html
Upvotes: 1