Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* zmtp: improve perfs of Connection.(read|send){,Multipart} This CL uses io.ReadFull to make sure all requested bytes are read from an io.Reader. It's also using binary.ByteOrder.Uint64 and binary.ByteOrder.PutUint64 directly instead of going the round about way through (slow) reflection. Fixes #67. Fixes #61. * zmtp: reduce number of allocs in Connection.SendCommand * zmtp: reduce number of allocs in Connection.writeMetadata * zmtp: removed reflection from de/serializing greetings * zmtp: remove slow reflection in Connection.recvMetadata * zmtp: implement REQ/REP Updates #65.
- Loading branch information