Featured image of post HybridCache in ASP.NET Core

HybridCache in ASP.NET Core

Caching is a powerful way to make your web applications faster and more efficient. In ASP.NET Core, HybridCache is a modern caching solution that combines the speed of in-memory caching with the consistency of distributed caching.

Featured image of post CAP Theorem In Distributed System

CAP Theorem In Distributed System

The CAP Theorem was introduced by Eric Brewer in 2000. It is a fundamental principle in distributed systems that describes the trade off between consistency, availability, and partition tolerance. And in the distributed systems, we can only have two of three properties simultaneously.

Featured image of post Json Column in Ef Core

Json Column in Ef Core

In .Net 7 and above, EF Core supports JSON document columns and most of relational databases like SQL Server, PostgreSQL and MySQL support this feature.

Featured image of post Generate Load Tests from Swagger/OpenAPI with K6

Generate Load Tests from Swagger/OpenAPI with K6

In the new era of software, ensuring performance and stability under heavy loads is very paramount. Load testing is a critical step in the software development lifecycle, as it helps identify performance bottlenecks and vulnerabilities.

Featured image of post Problem Details in .Net 7

Problem Details in .Net 7

Problem Detail provide machine-readable details of errors in a HTTP response to avoid the need to define new error response formats for HTTP APIs based on https://tools.ietf.org/html/rfc7807.