NetMsmqBindingElement.MaxBufferPoolSize 属性

定义

获取或设置为从通道接收消息的消息缓冲区管理器分配并供其使用的最大内存量。

public:
 property long MaxBufferPoolSize { long get(); void set(long value); };
[System.Configuration.ConfigurationProperty("maxBufferPoolSize", DefaultValue=524288)]
[System.Configuration.LongValidator(MinValue=0)]
public long MaxBufferPoolSize { get; set; }
[<System.Configuration.ConfigurationProperty("maxBufferPoolSize", DefaultValue=524288)>]
[<System.Configuration.LongValidator(MinValue=0)>]
member this.MaxBufferPoolSize : int64 with get, set
Public Property MaxBufferPoolSize As Long

属性值

Int64

可供消息缓冲区管理器使用的最大内存量(以字节为单位)。 默认值为 524288 (0x80000) 字节。

属性

注解

通过使用缓冲池,BufferManager 将使用缓冲区的成本降至最低。 当消息离开通道时,服务需要使用缓冲区来处理这些消息。 如果缓冲池中的内存不足,无法处理消息负载,则 BufferManager 必须从 CLR 堆分配更多内存,而这会增加垃圾回收的系统开销。 从 CLR 垃圾堆进行大量分配表明缓冲池太小,可以通过提高 MaxBufferPoolSize 限制来实现更大的内存分配,从而提高性能。

适用于