concurrent
Here are 411 public repositories matching this topic...
-
Updated
Nov 23, 2020 - Rust
CE have released their own take on tracing, with following notable changes compared to original ZIO Tracing:
- Instead of parsing lambdas, CE throws exceptions in IO constructors and cleans up stacktraces. That also means there is no regional control of tracing and AFAIK no way to avoid slight overhead even when tracing is completely disabled – but OTOH it may probably work on Scala.js
- Trace
-
Updated
Nov 14, 2020 - Go
-
Updated
Nov 19, 2020 - Elixir
-
Updated
Dec 20, 2019
-
Updated
Nov 21, 2020 - Rust
-
Updated
Oct 19, 2019
-
Updated
Oct 26, 2020 - Python
-
Updated
Aug 31, 2020 - JavaScript
-
Updated
Oct 13, 2020 - Java
-
Updated
Nov 16, 2020 - JavaScript
-
Updated
Nov 10, 2018 - Go
-
Updated
Jul 12, 2018 - Go
-
Updated
Jun 28, 2019 - C
-
Updated
Nov 23, 2020 - TypeScript
-
Updated
Jun 29, 2016 - C
Let tofu-optics users do this:
import tofu.optics.syntax.tupleN._
val lense = Tuple3._2[Int, String, Long] // : Contains[(Int, String, Long), String]tupleN object should contain all possible implicit extensions to Tuple{N} companion objects. Implementations should be macro generated.
Create front page
-
Updated
Mar 29, 2020 - Go
-
Updated
Sep 26, 2020 - C
-
Updated
Nov 1, 2020 - Java
-
Updated
Nov 17, 2020 - Java
-
Updated
Jun 12, 2020 - Go
-
Updated
Nov 22, 2020 - C++
-
Updated
Nov 18, 2020 - Python
-
Updated
Jan 31, 2019 - Go
-
Updated
May 12, 2020 - Go
Improve this page
Add a description, image, and links to the concurrent topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the concurrent topic, visit your repo's landing page and select "manage topics."


In the current version of FASTER C++, on Linux, we use
libaiofor async IO handling. It is a known issue thatlibaiois not very efficient. Recently,io_uringis released with Linux kernel 5.1, which advertises to be a high performance aysnc IO library. It would be useful to try it and see if we can improve disk performance on Linux by replacinglibaiowith it.More details for io_uring