cogo coroutine for rust
Cogo is a high-performance library for programming stackful coroutines with which you can easily develop and maintain massive concurrent programs. It can be thought as the Rust version of the popular [Goroutine][go].
Initial code frok from May and we add Many code improvements(Inspired by Golang
and crossbeam)
cogo/std/channel
An MPMC queues, which support buffering, are also implementations of channelcogo/std/http
An HTTP server is availableļ¼An HTTP Client(TODO)cogo/std/queue
cogo/std/sync
Includes basic mutex, WaitGroup, and other common synchronization constructsx8664 GNU/Linux, x8664 Windows, x86_64 Mac, aarch64 Linux OS are supported.
Support High performance channel(3 times better performance, Support the buffer), adapted from CrossBeam's channel(from crossbeam);
A naive echo server implemented with Cogo: ```rust
extern crate cogo;
use cogo::net::TcpListener; use std::io::{Read, Write};
fn main() { let listener = TcpListener::bind("127.0.0.1:8000").unwrap(); while let Ok((mut stream, )) = listener.accept() { go!(move || { let mut buf = vec![0; 1024 * 16]; // alloc in heap! while let Ok(n) = stream.read(&mut buf) { if n == 0 { break; } stream.writeall(&buf[0..n]).unwrap(); } }); } }
```
You can refer to https://tfb-status.techempower.com/ to get the latest [mayminihttp][mayminihttp] comparisons with other most popular frameworks.
There is a detailed [document][caveat] that describes Cogo's main restrictions. In general, there are four things you should follow when writing programs that use coroutines: * Don't call thread-blocking API (It will hurt the performance); * Carefully use Thread Local Storage (access TLS in coroutine might trigger undefined behavior).
It's considered unsafe with the following pattern:
rust set_tls(); // Or another coroutine API that would cause scheduling: coroutine::yield_now(); use_tls();
but it's safe if your code is not sensitive about the previous state of TLS. Or there is no coroutines scheduling between set TLS and use TLS.
Note:
The first three rules are common when using cooperative asynchronous libraries in Rust. Even using a futures-based system also have these limitations. So what you should really focus on is a coroutine stack size, make sure it's big enough for your applications.
If you want to tune your coroutine stack size, please check out [this document][stack].