Umar Farooq

Results 17 comments of Umar Farooq

Following is the Startup.cs //ConfigureServices in Startup.cs services.AddSingleton(Configuration); services.AddHttpClient(); services.AddAutoMapper(typeof(Startup)); services.AddJwtConfiguration(); services.AddControllersWithViews(options => { options.Filters.Add(); options.Filters.Add(new ValidationFilter()); options.Conventions.Add(new ControllerDocumentationConvention()); }) .AddFluentValidation(options => { options.RegisterValidatorsFromAssemblyContaining(); }) .AddControllersAsServices() .AddNewtonsoftJson(o => { o.SerializerSettings.Formatting...

I tried by removing signalr part from the app, and there was no delay. It was super fast to respond and stabilized quickly. Then I tried putting back the signalr...

The Azure Signalr service side- Availability And Performance ![gapture](https://user-images.githubusercontent.com/29075597/120430182-9a5e5d00-c344-11eb-8df5-6274349c473e.PNG)

IEasyCachingProvider has a method "GetByPrefixAsync" but IHybridCachingProvider doesn't. Since I am using IHybridCachingProvider as layered(in memory and redis) caching, I had to change the core feature of my application. I...

for now I am just getting items one by one, I hope it doesn't cause any problems ` var items = new List(); foreach (var key in keys) { var...

So essentially I can add easycache per tenant? thanks. I hesitated doing that because if I have 500 tenants it will add/maintain 500 instances of easycache. As long as its...