mirror of
https://github.com/ii64/gouring.git
synced 2025-04-01 03:41:44 +02:00
Go io uring syscall implementation without CGO, rewrite on branch v0.4
Other adjustments: * Fix miss results, using `SeenCqe` to pop CQ entry. * Increase sqpoll thread cpu to 16. * Fix CQE/SQE to Cqe/Sqe function name. * Fix UserData usage. Benchmark: * Increase number of N to 10_000_000 |
||
---|---|---|
assets | ||
bench/perf | ||
.gitignore | ||
go.mod | ||
go.sum | ||
hdr.go | ||
hdr_int_flags.go | ||
hdr_struct.go | ||
inline_cost.py | ||
Makefile | ||
prep.go | ||
queue.go | ||
queue_test.go | ||
README.md | ||
register.go | ||
setup.go | ||
sigset.go | ||
syscall.go | ||
syscall_nr_amd64.go | ||
uring.go | ||
uring_bench_test.go | ||
uring_test.go | ||
util_ptr_arith.go | ||
util_ptr_arith_test.go | ||
util_union.go |
gouring
go get github.com/ii64/gouring
Example
// setup
h, err := gouring.New(256, 0)
if err != nil { /*...*/ }
defer h.Close()
sqe := h.GetSQE()
b := []byte("io_uring!\n")
PrepWrite(sqe, 1, &b[0], len(b), 0)
submitted, err := h.SubmitAndWait(1)
if err != nil { /*...*/ }
println(submitted) // 1
var cqe *gouring.IoUringCqe
err = h.WaitCqe(&cqe)
if err != nil { /*...*/ } // check also EINTR
_ = cqe.UserData
_ = cqe.Res
_ = cqe.Flags
Graph
SQPOLL | non-SQPOLL |
---|---|