AllMight
Maybe the case for object pooling?
I have a large array I am processing. Each item is a large object that has multiple processors (classes with state).
Creating those 10 for example proccessors for every item in the list will be expensive.
Should I use something like object pooling? So I create the processor once and reuse it using a reset pattern? What's the best way to handle it?
Also maybe there is a better alternative to classes altogethe?
27 replies
Correct environments handling (appSettings.json)
We are using azure DevOps and I wondered what's the best way to handle environments.
Option 1: keep multiple app settings files for every environment and set on build the environment variable.
Option 2: use azure DevOps file replacement and use only one release configuration.
Both ways seems a bit weird. I want from one side to use the ASPNETCORE_ENVIRONMENT but also keep the variables in azure DevOps per environment and it seems they don't really work together.
Any suggestions what's the best way?
5 replies