Browse Source

Update docs

master
大師兄丶 3 years ago
committed by GitHub
parent
commit
0e575a446e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      docs/content/user-guide/zh/cap/configuration.md

+ 3
- 3
docs/content/user-guide/zh/cap/configuration.md View File

@@ -19,8 +19,8 @@ services.AddCap(config=> {
```C# ```C#
services.AddCap(config => services.AddCap(config =>
{ {
config.UseInMemoryQueue();
config.UseInmemoryStorage();
config.UseInMemoryMessageQueue();
config.UseInMemoryStorage();
}); });
``` ```


@@ -123,4 +123,4 @@ services.AddCap(config =>
> 默认值: false > 默认值: false


默认情况下,CAP会将所有消费者组的消息都先放置到内存同一个Channel中,然后线性处理。 默认情况下,CAP会将所有消费者组的消息都先放置到内存同一个Channel中,然后线性处理。
如果设置为 true,则每个消费者组都会根据 `ConsumerThreadCount` 设置的值创建单独的线程进行处理。
如果设置为 true,则每个消费者组都会根据 `ConsumerThreadCount` 设置的值创建单独的线程进行处理。

Loading…
Cancel
Save