Go processes data efficiently through streaming API s such as Map/Filter/ForEach
What is stream processing
If you have Java experience, you will be full of praise for java8 Stream, which greatly improves your ability to process collection type data.
int sum = widgets.stream()
.filter(w -> w.getColor() == RED)
.mapToInt(w -> w.getWeight())
.sum();
Stream enables us to support ...
Posted by Joopy on Tue, 04 Jan 2022 05:38:27 +0100
Spring cloud stream message driven
Message driven overview
What is Spring Cloud Stream? Officially, Spring Cloud Stream is a framework for building message driven microservices. Applications interact with binder objects in Spring Cloud Stream through inputs or outputs. We configure binding, and the binder object of Spring Cloud Stream is responsible for interacting with the mes ...
Posted by spartan789 on Fri, 03 Dec 2021 07:54:49 +0100