-
Updated
Oct 10, 2020 - C++
low-latency
Here are 156 public repositories matching this topic...
-
Updated
Jun 25, 2020 - Go
-
Updated
Oct 9, 2020 - Java
-
Updated
Oct 9, 2020 - Python
-
Updated
Oct 7, 2020 - C++
-
Updated
Jul 21, 2020 - C++
-
Updated
Oct 5, 2020 - Python
For example, given a simple pipeline such as:
Pipeline p = Pipeline.create();
p.readFrom(TestSources.items("the", "quick", "brown", "fox"))
.aggregate(aggregator)
.writeTo(Sinks.logger());
I'd like aggregator to be something requiring a non-serialisable dependency to do its work.
I know I can do this:
Pipeline p = Pipeline.create();
p.readFrom(TestSource
-
Updated
Jul 15, 2020 - Java
-
Updated
Aug 16, 2020 - Java
-
Updated
Oct 9, 2020 - C++
-
Updated
May 5, 2020 - Java
-
Updated
Oct 6, 2020 - C#
-
Updated
Sep 25, 2020 - Java
-
Updated
Sep 21, 2020 - Java
-
Updated
Sep 19, 2020 - Java
-
Updated
Oct 7, 2020 - C++
-
Updated
Oct 16, 2019 - C++
-
Updated
Aug 12, 2019 - Go
-
Updated
Oct 7, 2020 - C++
-
Updated
Oct 4, 2020 - C++
-
Updated
Oct 7, 2020 - C++
-
Updated
Sep 10, 2020 - C
-
Updated
May 3, 2019 - Java
-
Updated
Jun 4, 2019 - Java
-
Updated
Oct 7, 2020 - C++
Improve this page
Add a description, image, and links to the low-latency topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the low-latency topic, visit your repo's landing page and select "manage topics."
Describe the bug
The name of the column returned is
;when runningselect version();To Reproduce
Steps to reproduce the behavior:
select version();Expected behavior
Column should be named
version