fedjabosnic / hotfix

Low latency fix engine for .net
GNU Lesser General Public License v3.0
16 stars 5 forks source link

Byte buffer instead of string #7

Closed fedjabosnic closed 7 years ago

fedjabosnic commented 7 years ago

We currently use the message string as the backing data for messages and fields. While it's not exactly super heavy it will induce GC pressure on long running, high-throughput connections.

We should convert to using a reusable byte buffer or some similar concoction when we get the chance...

fedjabosnic commented 7 years ago

This has been resolved in pull request #10