Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -271,16 +271,16 @@ options are wrapped in `{client_opts, [...]}` and included in cluster options.

Options passed to the connection module. See [Connection options](#connection-options) below.

* `{max_waiting, non_neg_integer()}`
* `{max_waiting, pos_integer()}`

Max number of commands allowed to wait in queue. Default 5000.

* `{max_pending, non_neg_integer()}`
* `{max_pending, pos_integer()}`

Max number of commands to be pending, i.e. sent to client
and waiting for a response. Default 128.

* `{queue_ok_level, non_neg_integer()}`
* `{queue_ok_level, pos_integer()}`

If the queue has been full then it is considered ok
again when it reaches this level. Default 2000.
Expand Down Expand Up @@ -331,7 +331,7 @@ wrapped in `{connection_opts, [ered_connection:opt()]}`.
For `ered_cluster:connect/2`, the connection options are included under client
options, as `{client_opts, [{connection_opts, [...]}]}`.

* `{batch_size, non_neg_integer()}`
* `{batch_size, pos_integer()}`

If commands are queued up in the process message queue, this is the maximum
number of messages that will be received and sent in one call. Default 16.
Expand Down
649 changes: 526 additions & 123 deletions src/ered_client.erl

Large diffs are not rendered by default.

Loading
Loading