
How to build gRPC in ASP.NET Core
In this article, let's look at how gRPC works and how we can implement a simple Client Server interaction with gRPC in ASP.NET Core.
In this article, let's look at how gRPC works and how we can implement a simple Client Server interaction with gRPC in ASP.NET Core.
In this article, let's look at an implementation of Distributed Cache with SQL Server as a backing store with an example in ASP.NET Core.
In this article, let's look at how we can implement distributed caching in ASP.NET Core, with NCache as the caching provider.
In this article, let's talk about how we can integrate AWS ElastiCache for Memcached instance to an ASP.NET Core API and use it for caching.
In this article, let's look at how to connect to and integrate with RabbitMQ for implementing message queuing in ASP.NET Core
In this article, let's look at how we can configure and use NCache for query caching in Entity Framework Core with an illustrating example in ASP.NET ..
AsNoTracking() flags the framework to not to track changes on the records returned. EF Core then doesn't persist the result, thus conserving memory.
In general, there are two modes in which an ASP.NET Core application can run, when deployed in IIS.
In-Process model:
Out-Of-Process model:
How do you specify?
<Project Sdk="Microsoft.NET.Sdk.Web">
<PropertyGroup>
<TargetFramework>netcoreapp3.1</TargetFramework>
<AspNetCoreHostingModel>OutOfProcess</AspNetCoreHostingModel>
<AspNetCoreModuleName>AspNetCoreModule</AspNetCoreModuleName>
</PropertyGroup>
.... other config ....
</Project>
In this article, let's look at how we can configure and automate building ASP.NET Core code using Jenkins CI/CD freestyle pipeline