2500x slowdown after switching to lnm #42
Labels
No labels
Kind/Bug
Kind/Enhancement
Kind/Feature
Project/Lander
Project/Landerctl
idea
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference: Chewing_Bever/lander#42
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
After switching to
lnm, I've noticed an enermous decrease in requests/second when trying to benchmark the server application. Upon further inspection, this slowdown stems from the call topoll. In the old version, this call's runtime would scale along with the load of the server, with it being as low as 10 microseconds when on full load for a single connection.With the new implementation, this
pollcall seems to always be at least 10ms (usually around 40ms) after a call has been performed. I have absolutely zero clue why this is happening, as I can't find anything different about how I callpoll.I seem to have fixed this issue, but I'm stil very curious as to what caused it.