stream-vbyte-go
stream-vbyte-go copied to clipboard
A port of Stream VByte to Go
Results
2
stream-vbyte-go issues
Sort by
recently updated
recently updated
newest added
Map lookup in the decode path is having performance implications and a fix by replacing the map look up with a slice look up improves the performance like below. For...
This eliminates a runtime.mapaccess1 call (in favor of a memory access) whereever lookup[ctrl] is used.