Commit c2d88ba0 authored by Kirill Smelkov's avatar Kirill Smelkov

.

parent 6d853fa4
- custom memory manager is required to avoid performance hit on e.g. []byte alloc/dealloc
-> go-slab
- interfaces conversion in hot codepaths are costly:
e.g. having r as io.ReadSeeker and converting it to io.Reader e.g. this way:
io.ReadFull(r, ...)
calls convI2I all the time (no caching) which is not negliable
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment