镜像自: https://github.com/DragonOS-Community/thingbuf.git

Eliza Weisman 59702ad2fd chore(ci): fix duplicate runs on pushes to PRs 3 лет назад
.github 59702ad2fd chore(ci): fix duplicate runs on pushes to PRs 3 лет назад
benches c4ad975017 test: disable task budget in tokio mpsc benchmarks 3 лет назад
src e27852dd63 chore(ci): split loom tests into separate CI jobs (#10) 3 лет назад
tests 76df064cbf feat(mpsc): add waiting `send`/`send_ref` (#7) 3 лет назад
.envrc 84b9ce7057 initial commit 3 лет назад
.gitignore 84b9ce7057 initial commit 3 лет назад
Cargo.toml e27852dd63 chore(ci): split loom tests into separate CI jobs (#10) 3 лет назад
README.md b990dc80cc docs: fix markdown in FAQ 3 лет назад
default.nix 84b9ce7057 initial commit 3 лет назад
shell.nix 84b9ce7057 initial commit 3 лет назад

README.md

FAQs

  • Q: Why did you make this?

A: For tracing, I wanted to be able to send formatted log lines to a dedicated worker thread that writes them to a file. Right now, we do this using crossbeam-channel. However, this has the sad disadvantage that we have to allocate Strings, send them through the channel to the writer, and immediately drop them. It would be nice to do this while reusing those allocations. Thus...StringBuf.

  • Q: Is it lock-free?

A: Extremely.

  • Q: Why is there only a bounded variant?

A: Because unbounded queues are of the Devil.

  • Q: Isn't this just a giant memory leak?

A: If you use it wrong, yes.

  • Q: Why is it called that?

A: Originally, I imagined it as a kind of ring buffer, so (as a pun on "ringbuf"), I called it "stringbuf". Then, I realized you could do this with more than just strings. In fact, it can be generalized to arbitrary...things. So, "thingbuf".

  • Q: Why don't the Ref types implement Deref and DerefMut?

A: Blame loom for this.

  • Q: Why do the channels only have try_send? Where's send?

A: I haven't written send yet. :)