Skip to content

Notes

Event driven applications on AWS with C# and .NET Core

Building loosely coupled applications using C# and .NET Core on AWS

Posted on Tuesday, July 9, 2019

Resources

  • SQS long polling

  • As per SQS FAQs, (see When should I use Amazon SQS long polling, and when should I use Amazon SQS short polling), for background workers, long polling is the preferred option that provides reduced cost as well as faster response times. In a lambda that runs on a schedule, short polling may make more sense If the lambda is triggered by an event: ?

Examples

Serverless app repo