https://github.com/iammukeshm/amazon-sqs-for-dotnet-developers
Let's learn about Messaging in .NET Applications using Amazon SQS (Simple Queue Service).
https://github.com/iammukeshm/amazon-sqs-for-dotnet-developers
amazon aws csharp dotnet messaging queue sqs
Last synced: 2 months ago
JSON representation
Let's learn about Messaging in .NET Applications using Amazon SQS (Simple Queue Service).
- Host: GitHub
- URL: https://github.com/iammukeshm/amazon-sqs-for-dotnet-developers
- Owner: iammukeshm
- Created: 2023-05-01T15:33:12.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2023-05-01T17:29:57.000Z (about 3 years ago)
- Last Synced: 2025-02-14T14:56:48.651Z (over 1 year ago)
- Topics: amazon, aws, csharp, dotnet, messaging, queue, sqs
- Language: C#
- Homepage: https://codewithmukesh.com/blog/amazon-sqs-for-dotnet-developers/
- Size: 9.77 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Amazon SQS for .NET Developers
### Getting Started Easily with Queues & Messaging
In this demonstration, I built 2 ASP.NET Core WebAPIs. The first one produces events that are pushed into an Amazon SQS Queue and the second service consumes and processes the messages out of the SQS Queue.

> TIP: You really need such a queue while building a scalable event-driven decoupled architecture. Find out why.
Here are the topics covered:
- What is Amazon SQS, or Amazon Simple Queue Service?
- Core Concepts: Queue, Message Processing, Pricing, Advantages of Amazon SQS, Types of Queues
- Creating an Amazon SQS via Console
- Sending Message to Amazon SQS Queue using .NET SDK
- Consuming Messages from Amazon SQS Queue using .NET SDK
- Postman Testing
- Use Cases of Amazon SQS
Read the entire article here: https://codewithmukesh.com/blog/amazon-sqs-for-dotnet-developers/