concurrent
Here are 414 public repositories matching this topic...
the champagne of beta embedded databases
-
Updated
Nov 28, 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
A new Unix shell.
-
Updated
Nov 14, 2020 - Go
Concurrent and multi-stage data ingestion and data processing with Elixir
-
Updated
Nov 29, 2020 - Elixir
List of Elixir books
-
Updated
Dec 20, 2019
Blazing fast concurrent HashMap for Rust.
-
Updated
Nov 26, 2020 - Rust
必看!java后端,亮剑诛仙。java发展路线技术要点。
-
Updated
Oct 19, 2019
Fast job queuing and RPC in python with asyncio and redis.
-
Updated
Nov 24, 2020 - Python
100% Vanilla Javascript Multithreading & Parallel Execution Library
-
Updated
Aug 31, 2020 - JavaScript
java-study 是本人学习Java过程中记录的一些代码!从Java基础的数据类型、jdk1.8的Lambda、Stream和日期的使用、 IO流、数据集合、多线程使用、并发编程、23种设计模式示例代码、常用的工具类, 以及一些常用框架,netty、mina、springboot、kafka、storm、zookeeper、redis、elasticsearch、hbase、hive等等。
-
Updated
Oct 13, 2020 - Java
React Suspense workshop
-
Updated
Nov 27, 2020 - JavaScript
Pipeline is a package to build multi-staged concurrent workflows with a centralized logging output.
-
Updated
Nov 10, 2018 - Go
Cloe programming language
-
Updated
Jul 12, 2018 - Go
Share Hash Tables With Stable Key Hints Stored In Memory Mapped Files Between Arbitrary Processes
-
Updated
Jun 28, 2019 - C
-
Updated
Nov 30, 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
A collection of useful utility functions
-
Updated
Mar 29, 2020 - Go
Dao Programming Language
-
Updated
Sep 26, 2020 - C
Implementation of blocking (IO-Bound) cancellable java.util.concurrent.CompletionStage and related extensions to java.util.concurrent.ExecutorService-s
-
Updated
Nov 1, 2020 - Java
Automatic instrumentation for 3rd-party libraries in Java applications with OpenTracing.
-
Updated
Nov 17, 2020 - Java
Collection of useful patterns
-
Updated
Jun 12, 2020 - Go
Promises/A+ implementation for Qt/C++
-
Updated
Nov 22, 2020 - C++
A pytest plugin for parallel and concurrent testing
-
Updated
Nov 18, 2020 - Python
Go concurrent-safe, goroutine-safe, thread-safe queue
-
Updated
May 12, 2020 - Go
A fast SAT solver
-
Updated
Jan 31, 2019 - 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