We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3153cc commit cc4e38aCopy full SHA for cc4e38a
README.md
@@ -37,6 +37,7 @@ Pros:
37
38
* Possibly more Golang:ish
39
* Makes reading from multiple channels easy
40
+ * Fast
41
42
Cons:
43
@@ -58,6 +59,7 @@ Pros:
58
59
60
61
* Makes it harder to read from multiple channels, but a go-routine easily solves that.
62
+ * Slower than the channel consumer.
63
64
See [examples/consumer_example](examples/consumer_example)
65
@@ -96,6 +98,7 @@ Cons:
96
98
97
99
* Produce() is a non-blocking call, if the internal librdkafka queue is full
100
the call will fail.
101
+ * Somehwat slower than the channel producer.
102
103
See [examples/producer_example](examples/producer_example)
104
0 commit comments