Archives for Architect
C# code performance improvement with Span<T> Type
A new structure Span<T> was introduced since C# The main goal of it is to avoid allocating new objects on heap memory when working with the contiguous region of arbitrary memory requirements. …
Understanding Thread Starvation in .NET Core Applications
Most of the applications will be facing a performance issue while scaling and this might be due to thread starvation. Before getting into the thread starvation problem, we need to…
Working with Async/Await/Task keywords in depth
Modern systems are coming more powerful with multiple processors. Similarly, the modern server application development also improved to leverage the host CPU power for processing multiple requests in parallel to…
Understanding worker thread and I/O Completion Port (IOCP)
Every .NET/.NET Core application is associated with a thread pool and is a collection of threads that effectively executes asynchronous calls of an application. These threads on the thread pool…
Working with gRPC in .NET Core
Overview This article will do a brief introduction to the gRPC framework, then will see how gRPC services can be created with Core and how we can invoke these services…
Implementing .NET Core Health Checks
Generally, when we are using any uptime monitoring systems or load balancers, these systems will keep monitoring the health of the application and based on its health condition it will…
Understanding Persistence Ignorance Principle
Before understanding what is Persistence Ignorance principle, we need to understand the difference between DTO and POCO. As a programmer we should know about DTOs represent as Data Transfer Objects…
Safely Storing Sensitive Configuration Data in .NET Core
Problem Statement There could be a situation where the application will use some sensitive data such as Payment Gateway live credentials and client don’t want to expose the data to any of…
Working with Moment.JS
is an intelligent JavaScript library to Parse, validate, manipulate, and display dates and times for given formats. Here in this article, I want to provide some mostly used conversions for any projects which hard to…
Understanding Virtualization and Hypervisors
What is Virtualization? Virtualization is the process of converting physical IT resources to the virtual IT resources like servers to Virtual machines, storage to virtual storage and networks to virtual…