You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+9
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,15 @@ This plugin supports these configuration options.
31
31
| ciphers | array, ciphers list | No |
32
32
| enable_token | boolean, one of [true, false]. default is false | No |
33
33
| auth_plugin_params_String | string | No |
34
+
| enable_async | boolean, one of [true, false]. default is false | No |
35
+
36
+
37
+
## Sync vs Async
38
+
39
+
Sync is slower because it requires verification that a message is received. Sync supports exactly/effectively once messaging. This means there is a big network latency increase here.
40
+
41
+
Async is faster because it sends messages out and doesn't care if the message was received/processed or not. Async should only be used if you want "at most once" messaging and don't care if messages are lost.
0 commit comments