├── README.md ├── RESULT.md ├── RESULT_old.md ├── dotnet ├── Program.cs └── dotnet.csproj ├── go ├── go.mod └── main.go ├── java └── VirtualThreads.java ├── nodejs └── main.js ├── python └── main.py ├── rust_async_std ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs ├── rust_futures ├── Cargo.lock ├── Cargo.toml └── src │ └── main.rs └── rust_tokio ├── Cargo.lock ├── Cargo.toml └── src └── main.rs /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/README.md -------------------------------------------------------------------------------- /RESULT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/RESULT.md -------------------------------------------------------------------------------- /RESULT_old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/RESULT_old.md -------------------------------------------------------------------------------- /dotnet/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/dotnet/Program.cs -------------------------------------------------------------------------------- /dotnet/dotnet.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/dotnet/dotnet.csproj -------------------------------------------------------------------------------- /go/go.mod: -------------------------------------------------------------------------------- 1 | module coroutines 2 | 3 | go 1.23 4 | -------------------------------------------------------------------------------- /go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/go/main.go -------------------------------------------------------------------------------- /java/VirtualThreads.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/java/VirtualThreads.java -------------------------------------------------------------------------------- /nodejs/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/nodejs/main.js -------------------------------------------------------------------------------- /python/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/python/main.py -------------------------------------------------------------------------------- /rust_async_std/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_async_std/Cargo.lock -------------------------------------------------------------------------------- /rust_async_std/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_async_std/Cargo.toml -------------------------------------------------------------------------------- /rust_async_std/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_async_std/src/main.rs -------------------------------------------------------------------------------- /rust_futures/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_futures/Cargo.lock -------------------------------------------------------------------------------- /rust_futures/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_futures/Cargo.toml -------------------------------------------------------------------------------- /rust_futures/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_futures/src/main.rs -------------------------------------------------------------------------------- /rust_tokio/Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_tokio/Cargo.lock -------------------------------------------------------------------------------- /rust_tokio/Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_tokio/Cargo.toml -------------------------------------------------------------------------------- /rust_tokio/src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hez2010/async-runtimes-benchmarks-2024/HEAD/rust_tokio/src/main.rs --------------------------------------------------------------------------------