atlas news
    
Rahul Nath
15  avril     05h53
RabbitMQ Topic Exchange Explained
Rahul Pulikkot Nath    Topic Exchanges in RabbitMQ route messages based on wildcard matches on the message routing key specified on the queue binding. With Topic Exchanges, consumers can subscribe to topics they are interested in, like subscribing to a feed or individual tags.
05  avril     04h20
RabbitMQ Headers Exchange Explained
Rahul Pulikkot Nath    Headers Exchange in RabbitMQ routes messages using message headers to route messages. Let’s explore how Header Exchanges work in RabbitMQ, underlying concepts and see it in action from a .NET application.
02  avril     04h53
5 Recommended Patterns When Using Cancellation Token in .NET
Rahul Pulikkot Nath    Are you blindly passing around the CancellationToken to all your functions If so, you are likely using CancellationTokens in the wrong way. Let’s learn five good practices when using Cancellation Tokens in your application code.
22  mars     03h30
A .NET Programmer’s Guide to CancellationToken
Rahul Pulikkot Nath    Imagine having a long running request triggered by a user on your server. But the user is no longer interested in the result and has navigated away from the page.However, the server is still processing that request and utilizing resources until you come along and implement Cancellation Tokens in the
21  mars     05h46
RabbitMQ Fanout Exchange Explained
Rahul Pulikkot Nath    A Fanout Exchange type in RabbitMQ routes messages to all of the queues bound to it, ignoring the routing key. Let’s understand how to set up a Fanout Exchange and how it routes messages to consumers.
17  mars     18h56
RabbitMQ Direct Exchange Explained
Rahul Pulikkot Nath    A Direct Exchange routes messages to queues whose binding key matches the message routing key. Let’s understand how to set up a Direct Exchange and how it routes messages to consumers.
28  février     03h37
Rabbit MQ Exchange and Exchange Types: What You Need to Know
Rahul Pulikkot Nath    An Exchange in RabbitMQ is a routing mechanism to send messages to queues. Let’s learn about the Exchanges and the different types of Exchanges in RabbitMQ.
14  février     02h48
Efficient Message Distribution with RabbitMQ: Understanding Round Robin and Fair Dispatching Modes
Rahul Pulikkot Nath    Dispatching modes play a crucial role in task distribution among multiple workers. Learn how the two message dispatching modes Round robin and Fair dispatching work in RabbitMQ.
12  février     06h42
Exploring Manual and Automatic Acknowledgment in RabbitMQ with .NET
Rahul Pulikkot Nath    Delivery processing acknowledgements from consumers are referred to as acknowledgements in messaging protocols. Let’s learn automatic and manual ack modes in RabbitMQ.
22  janvier     06h51
Amazon MQ RabbitMQ: A Reliable Messaging Solution for Your .NET Projects
Rahul Pulikkot Nath    RabbitMQ is a powerful open source message broker facilitating communication between systems or applications. Let’s learn how to get started using RabbitMQ on Amazon MQ from .NET application.
05  janvier     06h26
Efficiently Handle SQS Messages with AWS Lambda Powertools Batch Utility
Rahul Pulikkot Nath    The AWS Lambda PowerTools Batch processing utility makes it easy to process a batch of messages from Amazon SQS, Amazon Kinesis Data Streams, and Amazon DynamoDB Streams. Let’s learn how to get started.
01  janvier     23h14
How To Effectively Manage Sensitive Information in AWS Lambda: Powertools Parameters
Rahul Pulikkot Nath    Learn how to get started using the Lambda Powertools Parameters NuGet package, use it when building Lambda Functions, and connect quickly to Parameter Store and Secrets Manager using the library package.
05  décembre     10h27
How to Effectively Manage Data Lifetime with DynamoDB Time to Live
Rahul Pulikkot Nath    Amazon DynamoDB Time to Live TTL is a feature that allows you to manage the expiration of items in a DynamoDB table automatically. Let’s learn how to enable and use the TTL feature when building applications.
04  décembre     06h18
How To Easily Make Your .NET AWS Lambda Function Idempotent
Rahul Pulikkot Nath    Let’s learn how to get started using the Powertools Idempotency package, some key features, and how it easily fits into your existing Lambda Functions.
27  novembre     04h09
How To Easily Log Metrics Data From AWS Lambda Using Powertools Library
Rahul Pulikkot Nath    Metrics are data about the performance of your systems. By default, many AWS services provide free metrics for the resources. The Powertools Lambda Metrics library makes publishing custom metrics from your AWS Lambda Function easy.