You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The lock around logging means that we can have high contention for lots of log events on a multithreaded system. It would be better if we could log to per-thread or even per-task streams, and merge them later. We can probably implement some kind of write-optimized scheme using a linked list.
The text was updated successfully, but these errors were encountered:
The lock around logging means that we can have high contention for lots of log events on a multithreaded system. It would be better if we could log to per-thread or even per-task streams, and merge them later. We can probably implement some kind of write-optimized scheme using a linked list.
The text was updated successfully, but these errors were encountered: