Cache response time issue
Hi friends,
I really don't know where to start :(
I'm working on a project that implemented using
The ElectionService.CQRS is the Application layer for this service, the ElectionService.API is an
As you will noticed the ElectionService.CQRS (Application layer) project is implemented using
Recently I tried to add the caching mechanism to this service, so I used
I really don't know where to start :(
I'm working on a project that implemented using
Microservices, one of those services called ElectionService, this service is composed from 3 main projects ( ElectionService.Infrastructure, ElectionService.CQRS and ElectionService.API)The ElectionService.CQRS is the Application layer for this service, the ElectionService.API is an
ASP.Net core 8 web api that represents the entry point for this service.As you will noticed the ElectionService.CQRS (Application layer) project is implemented using
CQRS pattern.Recently I tried to add the caching mechanism to this service, so I used
Distributed SqlServer Cache and this is the first time I deal with it.