Analysis of the use of pooled object RecyclableMemoryStream in .netcore

Microsoft.IO.RecyclableMemoryStream is a high-performance class library designed to improve Stream operations. The meaning is obvious. It is designed to replace MemoryStream. RecyclableMemoryStream can minimize the LOH (large object heap) of Stream operations on GC. ) allocation and memory fragmentation, leaks and other annoying problems, in this article we will discuss Microsoft.IO.RecyclableMemoryStream and how to improve performance in .NET Core applications.

This article is reprinted from: https://ldqk.xyz/2153
This site is for inclusion only, and the copyright belongs to the original author.

Leave a Comment