Releases: edwarnicke/serialize
Releases · edwarnicke/serialize
Performance Improvements
Performance improvement by not sorting every time. (#12) Signed-off-by: Ed Warnicke <hagbard@gmail.com>
Channel-less
Move to channel-less implementation. (#11) * Working rough cut Signed-off-by: Ed Warnicke <hagbard@gmail.com> * Move to channel-less implementation. When multiple go routines queue to send into a channel, the order of their entry to the channel is unknowable: https://groups.google.com/g/golang-nuts/c/PWt4r9b40bc/m/lC59KD5TQCwJ Therefore, we cannot rely on a channel for ordering, as if we overrun its size, order will be non-deterministic. This PR moves to using a strict ordering by atomically ordered ticket. Signed-off-by: Ed Warnicke <hagbard@gmail.com>
Performance Improvements
Minor performance improvement (#9) Have the processing thread get the entire buffer available to reduce its mutex locks Signed-off-by: Ed Warnicke <hagbard@gmail.com>
Go Race Detection has no sense of humor
This fixes Go Race Detection false positives on previous implementation and also improves performance :)
Fix deadlocks due to nesting AsyncExecs
Initial Release
Update README and fix CI (#1) Signed-off-by: Ed Warnicke <hagbard@gmail.com>