viceroypenguin
Hangfire recurring-jobs struck in queue
keep in mind adding it to the queue doesn't mean it happened at 9:30pm. it could have happened when you went to the website (which triggered starting the app up, which triggered hangfire to look for any jobs in the past it should have run and triggering those)
7 replies
Hangfire recurring-jobs struck in queue
https://stackoverflow.com/questions/781357/how-do-i-set-up-my-iis-to-keep-my-application-alive has several additional settings to change
7 replies
✅ vs code community don't start my code
it's been at least 10 years since i've seen a pc optimizer that did anything valuable in the first place. there are plenty of oss ones anyway. are you selling this optimizer? if so, how are these "old acquaintances" getting it in the first place? are they paying you for the optimizer, and then cracking it?
65 replies
Help me understand the GC in depth
https://github.com/dotnet/runtime/blob/main/docs/design/coreclr/botr/type-system.md probably has more information you care about
10 replies
Help me understand the GC in depth
For this, you'll find best results reading the GC code https://github.com/dotnet/runtime/tree/main/src/coreclr/gc or opening a discussion on the dotnet/runtime repo
10 replies
✅ Use() Extension Overload
The extra allocations are due to how a
Func<>
is created dynamically. Extra allocations means more work allocating the object and for the GC later. That said, the difference is negligible for most applications. Use whichever is easiest for you and don't worry about perf issues until you have identified that there is one.7 replies
My NuGet packages are not created
note, you cannot use the
dotnet
build system to put it into a shared folder for consumption. you have to build it, and then use nuget install
to put it into the shared location. otherwise, it will not end up in the proper subfolder of the shared location.134 replies