ASP.NET Core Hosting Tips: Using MiniBlog and ASP.NET 6.0 to Create a Minimalist Blog

ASP.NET Core Hosting Tips: Using MiniBlog and ASP.NET 6.0 to Create a Minimalist Blog

Blogging has become a popular method to express ideas, share information, and connect with a large audience in the current digital era. MiniBlog is an excellent option for ASP.NET 6.0 users who wish to construct a simple, lightweight blog. MiniBlog is an ASP.NET Core-based open-source blog engine concentrating on simplicity and usability. This article describes […]

ASP.NET Core Hosting Tips: Ways To Optimize Performance In ASP.NET Core Applications

ASP.NET Core Hosting Tips: Ways To Optimize Performance In ASP.NET Core Applications

Distributed cache plays a major role in optimizing the application’s performance by caching the data in memory and reducing database trips. In simple words, caching refers to storing the result of an operation so that the future request returns faster. When do we cache? When the computation is slow. Computation will run multiple times. When […]