libcsp: 一個 10 倍於 Golang 的高性能 C 語言併發庫

libcsp是一個C語言實現的基於CSP模型的高性能併發庫, 利用它你能夠用C開發一些高性能項目.git

特性:

  • 支持多核
  • 高性能調度器
  • 編譯時棧大小靜態分析
  • 高性能 Lock-free 通道
  • 支持 netpoll 和 timer

Golang和Libcsp比較

// Golang                                       // Libcsp
go foo(arg1, arg2, arg3)                        async(foo(arg1, arg2, arg3));
                                              
var wg sync.WaitGroup                           sync(foo(); bar());
wg.Add(2)                                            
go func() { defer wg.Done(); foo(); }()
go func() { defer wg.Done(); bar(); }()
wg.Wait()

runtime.Gosched()                               yield();
                                              
chn := make(chan int, 1 << 6)                   chan_t(int) *chn = chan_new(int)(6);
num = <-chn                                     chan_pop(chn, &num);
chn <- num                                      chan_push(chn, num);
                                              
timer := time.AfterFunc(time.Second, foo)       timer_t timer = timer_after(timer_second, foo());
timer.Stop()                                    timer_cancel(timer);

Github: https://github.com/shiyanhui/libcsp
文檔: https://libcsp.comgithub

相關文章
相關標籤/搜索