forked from bitcoin/bitcoin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
doc: add detached release notes for bitcoin#14060
- Loading branch information
Showing
1 changed file
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
Configuration | ||
------------- | ||
|
||
The outbound message high water mark of the ZMQ PUB sockets are now | ||
configurable via the options: | ||
|
||
`-zmqpubhashtxhwm=n` | ||
|
||
`-zmqpubhashblockhwm=n` | ||
|
||
`-zmqpubrawblockhwm=n` | ||
|
||
`-zmqpubrawtxhwm=n` | ||
|
||
Each high water mark value must be an integer greater than or equal to 0. | ||
The high water mark limits the maximum number of messages that ZMQ will | ||
queue in memory for any single subscriber. A value of 0 means no limit. | ||
When not specified, the default value continues to be 1000. | ||
When a ZMQ PUB socket reaches its high water mark for a subscriber, then | ||
additional messages to the subscriber are dropped until the number of | ||
queued messages again falls below the high water mark value. |