anita
Application memory keeps increasing
I have an application whose memory usage keeps increasing. The obvious thought is that I have a memory leak. But it turns out, that if i force GC via GC.Collect(), the memory usage is stable. So I'm not use what to do now? Should I just regularly call GC.Collect()? But this seems a bit off, and I haven't seen another application needing to do this.
27 replies
✅ Why do my ASP.NET Core Requests not run in parallel?
If I call the /slow enpoints multiple times in short succession, I can see that they are not processed in parallel. I can see that because they take longer than 5 seconds (except first one). This is confusing to me, as I would expect them to await the delay in parallel. Can someone explain why this is?
19 replies
❔ The package ID is reserved - when it is not
I tried publishing my first nuget package to nuget.org. But I get the error "The package ID is reserved". I have searched on nuget.org and I cant find any package that has the same name. The package has the id "Joa.API". I have seen that there is a thing called "Package ID Prefix Reservation". But I also cant find any packages that start with Joa. So my question is, what reasons could there be for this error occurs to occur?
2 replies