uk en ru

RealHOST blog

Interesting and helpful things from the world of hosting and development
11/22/2024
.NET 9: Major improvements in security, performance, and developer friendliness

.NET 9 continues Microsoft's tradition of developing its ecosystem by offering improvements in key areas: security, performance, and ease of development. This version is aimed at simplifying the work of developers, increasing the reliability of applications, and adapting to modern industry requirements. Let's analyze the main innovations of .NET 9 and their impact on development

#aspnet
11/7/2024
Caching in ASP.NET

Caching– is one of the most popular and effective approaches used in software development. Its essence is to reuse already obtained results of long or heavy operations, avoiding their repeated execution. After a complex task is completed, the result is stored in a cache and retrieved from there when it is requested again, instead of having to perform the same operation again. This approach is designed to make it much easier on the server and speed up the application.

 

#aspnet
8/8/2024
Basic ASP.NET configuration: adding configurations in one line of code

I've been working with Sitecore CMS for the past few years and now I'm back to “pure” ASP.Net MVC development. I like the way Sitecore CMS handles configuration files

#aspnet
6/5/2024
Avoid these C# errors and become a performance master

Have you ever felt like your .NET application is moving at a snail’s pace? If your immediate reaction is “yes”, don’t worry, you’re not alone. You may be suffering from the consequences of some bad practices disguised as seemingly logical methods.

#aspnet
2/1/2024
Differences between the IEnumerable, ICollection and IList interfaces

IEnumerable, ICollection, and IList are the interfaces most commonly used in the .Net Framework. Let's see what opportunities they open up for the developer.

#aspnet
  • 1