Synchronize MemoryCache in all instances


In projects where several instances are on the server and use MemoryCache , one of the problems is managing their Memory Cache. For example, on one instance there is data inside the Memory that is different from other instances ....
Read more

Implement Circuit Breaker in Asp.Net Core


Consider the scenario in which you send a request API to your application using HttpClient. If an external service becomes unavailable, requests sent to your application that you send to this API via HttpClient will be delayed ....
Read more

My fraud on the Stackoverflow site - serial voting was reversed


Almost from the summer of 2019, I started working on the Stackoverflow site and answering questions that were asked about C # and I knew the answer. Early on, when I received a positive score ....
Read more

Performance tip about List


If we want to maintain a list of data, the first way that comes to mind is List or Array. In this article, we want to review a point about the space occupied by List. The List class uses an internal array to store elements. ....
Read more

GitLab CI-CD .Net Core


This article covers the implementation of a simple example of CICD for a .Net Core project on GitLab with windows runner. In practice, we want to implement a service that automatically does what we do manually to publish the project. What do we do to publish a .NET ....
Read more