hi
The framework will register all IDistributedCache as Singleton. You dont need to register it again.
https://github.com/abpframework/abp/blob/dev/framework/src/Volo.Abp.Caching/Volo/Abp/Caching/AbpCachingModule.cs#L25-L26
Memory cache cannot cross project/application process. Multiple projects should consider using a distributed cache (Redis).
I can't determine the problem from the information you provided. It would be better to have a simple project to reproduce the problem.
Thanks.
hi
Please check the Windows Event Viewer.
I think this is still because the IIS is recycled.
hi
https://learn.microsoft.com/en-us/answers/questions/916124/why-does-build-stop-application-pool-(net-core-6-0
hi
I will check your project.
hi
Can you share a simple project to reproduce the above problem?
Thanks
liming.ma@volosoft.com
hi
Have you seen this?
https://docs.abp.io/en/commercial/latest/themes/lepton-x/mvc#general-settings
hi
You can filter it by logger.
https://github.com/serilog/serilog-expressions?tab=readme-ov-file#filtering-example
var loggerConfiguration = new LoggerConfiguration()
.MinimumLevel.Debug()
.Filter.ByExcluding(logEvent =>
{
//check the exception
return false or true;
})
.WriteTo.Console();