AmqpMessageConverter class initializes new memory stream (line 229) to convert copy streams.
This is inefficient in terms of memory as many streams needs to be allocated.
Usage of MSFT's RecyclableMemoryStream improves the memory utilization by reusing streams and intended to be a drop-in replacement
AmqpMessageConverter class initializes new memory stream (line 229) to convert copy streams. This is inefficient in terms of memory as many streams needs to be allocated. Usage of MSFT's RecyclableMemoryStream improves the memory utilization by reusing streams and intended to be a drop-in replacement