❔ PacketWriters for high performance requests over webwockets

Is there packet writer/reader that can perform efficiently with 10.000 requests per second?

An example for what i;m looking for;
public void OnVoice(User user, byte[] data)
{
    PacketWriter packet = new PacketWriter();
    packet.UInt8(0xFE); // Voice Packet ID
    packet.UInt64(UserID);
    packet.BytesWithSize(data);
    this.WebSocketClient.Send(packet.GetByteArray());
}
Was this page helpful?