Skip to content

Commit fb4095b

Browse files
committed
[Experiment] IoUring based tokio IO
Signed-off-by: Adam Gutglick <[email protected]>
1 parent 89b236b commit fb4095b

File tree

3 files changed

+19
-1
lines changed

3 files changed

+19
-1
lines changed

.cargo/config.toml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@ rustflags = [
33
"-C", "force-frame-pointers=yes",
44
]
55

6+
[target.'cfg(target_os="linux")']
7+
rustflags = [
8+
"--cfg", "tokio_unstable",
9+
]
10+
611
[target.wasm32-unknown-unknown]
712
rustflags = ['--cfg', 'getrandom_backend="wasm_js"', '-C', 'target-feature=+atomics']
813

Cargo.lock

Lines changed: 13 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

bench-vortex/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ tabled = { workspace = true, features = ["std"] }
7070
tar = { workspace = true }
7171
target-lexicon = { workspace = true }
7272
tempfile = { workspace = true }
73-
tokio = { workspace = true, features = ["full"] }
73+
tokio = { workspace = true, features = ["full", "io-uring"] }
7474
tokio-stream = { workspace = true }
7575
tokio-util = { workspace = true }
7676
tpchgen = { workspace = true }

0 commit comments

Comments
 (0)