#
seastar
Here are 21 public repositories matching this topic...
High performance server-side application framework
-
Updated
May 13, 2022 - C++
senior7515
commented
Apr 24, 2019
Prometheus can add latency to the data path.
Use a low priority scheduling group for the metrics.
ref: https://groups.google.com/forum/#!topic/seastar-dev/adKyzRgqc5E
> with_scheduling_group(maintenance_scheduling_group, [&] {
> return
> prometheus_server.listen(ipv4_addr{prom_addr.addr_list.front(),
> pport}).handle_exception([pport, &cfg] (auto ep) {
>
A curated list of resources related to Seastar, an industrial-grade C++ framework for building high-performance servers.
-
Updated
Apr 29, 2022
An on-disk key-value database based on B-Link-Tree structure
-
Updated
Jul 6, 2021 - C++
BigSort is sample that leverage on the seastar framework to perform sort of big files that cannot be handled in the main memory
-
Updated
Feb 19, 2019 - C++
-
Updated
Feb 19, 2018
High performance server-side application framework
-
Updated
Jul 7, 2018 - C++
-
Updated
Feb 19, 2018
Improve this page
Add a description, image, and links to the seastar topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the seastar topic, visit your repo's landing page and select "manage topics."
The
observableclass keeps the list ofstd::function<void(Args...)>subscribers onboard. When set (called) the value notifies all observers about the change. Beingvoidthe callback that needs to start an asynchronous operation can do nothing but send it into the background by ignoring the top-most future. It would be nice ifobservable::operator()returned back a future. This would requir