spargio 0.5.1

Work-stealing async runtime for Rust built on io_uring and msg_ring
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
# Placement and Stealing

Core placement policies:

- `Pinned(shard)`
- `RoundRobin`
- `Sticky(key)`
- `Stealable`
- `StealablePreferred(shard)`.

Use `Pinned` for strict shard-local state, and `Stealable*` when post-I/O CPU
work can move for better balance.