Thank you for building the amazing Json Websocket based library.
I have noticed the usage of Memory Stream in SendTextJson, SendBinaryBson. This will create a really high memory usage (inturn depends on the number of Websocket calls and the data that's being transferred) no matter there is a using statement on the memory stream. The best way to send the Json is by serializing the data using standard libraries like MessagePack.
Thank you for building the amazing Json Websocket based library.
I have noticed the usage of Memory Stream in SendTextJson, SendBinaryBson. This will create a really high memory usage (inturn depends on the number of Websocket calls and the data that's being transferred) no matter there is a using statement on the memory stream. The best way to send the Json is by serializing the data using standard libraries like MessagePack.