|
|
|
|
|
by bluGill
61 days ago
|
|
I've seen a lot of requests to obtimize code where we can measure the optimal versions saves a few nanoseconds. I just deleted some 'optimal code' that took a lot of mutexes and so was only faster when there is no contetion but in real world multi-writer situations the easy code wins. (Shared memory vs local socket for ipc) |
|
Generally I've found that the penalty, even without contention, is pretty minimal, and it almost always wins under contention.