|
|
@@ -19,8 +19,8 @@ services.AddCap(config=> { |
|
|
|
```C# |
|
|
|
services.AddCap(config => |
|
|
|
{ |
|
|
|
config.UseInMemoryQueue(); |
|
|
|
config.UseInmemoryStorage(); |
|
|
|
config.UseInMemoryMessageQueue(); |
|
|
|
config.UseInMemoryStorage(); |
|
|
|
}); |
|
|
|
``` |
|
|
|
|
|
|
@@ -123,4 +123,4 @@ services.AddCap(config => |
|
|
|
> 默认值: false |
|
|
|
|
|
|
|
默认情况下,CAP会将所有消费者组的消息都先放置到内存同一个Channel中,然后线性处理。 |
|
|
|
如果设置为 true,则每个消费者组都会根据 `ConsumerThreadCount` 设置的值创建单独的线程进行处理。 |
|
|
|
如果设置为 true,则每个消费者组都会根据 `ConsumerThreadCount` 设置的值创建单独的线程进行处理。 |