Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/Tencent/libco
libco is a coroutine library which is widely used in wechat back-end service. It has been running on tens of thousands of machines since 2013.
https://github.com/Tencent/libco
Last synced: 7 days ago
JSON representation
libco is a coroutine library which is widely used in wechat back-end service. It has been running on tens of thousands of machines since 2013.
- Host: GitHub
- URL: https://github.com/Tencent/libco
- Owner: Tencent
- License: other
- Created: 2016-10-12T02:36:47.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-03-07T09:08:03.000Z (8 months ago)
- Last Synced: 2024-10-22T22:37:09.810Z (12 days ago)
- Language: C++
- Homepage:
- Size: 187 KB
- Stars: 8,299
- Watchers: 483
- Forks: 2,092
- Open Issues: 128
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
- AwesomeCppGameDev - libco - end service. It has been running on tens of thousands of machines since 2013. (C++)
- StarryDivineSky - Tencent/libco
README
Libco
===========
Libco is a c/c++ coroutine library that is widely used in WeChat services. It has been running on tens of thousands of machines since 2013.By linking with libco, you can easily transform synchronous back-end service into coroutine service. The coroutine service will provide out-standing concurrency compare to multi-thread approach. With the system hook, You can easily coding in synchronous way but asynchronous executed.
You can also use co_create/co_resume/co_yield interfaces to create asynchronous back-end service. These interface will give you more control of coroutines.
By libco copy-stack mode, you can easily build a back-end service support tens of millions of tcp connection.
***
### 简介
libco是微信后台大规模使用的c/c++协程库,2013年至今稳定运行在微信后台的数万台机器上。libco通过仅有的几个函数接口 co_create/co_resume/co_yield 再配合 co_poll,可以支持同步或者异步的写法,如线程库一样轻松。同时库里面提供了socket族函数的hook,使得后台逻辑服务几乎不用修改逻辑代码就可以完成异步化改造。
作者: sunnyxu([email protected]), leiffyli([email protected]), [email protected]([email protected]), sarlmolchen([email protected])
PS: **近期将开源PaxosStore,敬请期待。**
### libco的特性
- 无需侵入业务逻辑,把多进程、多线程服务改造成协程服务,并发能力得到百倍提升;
- 支持CGI框架,轻松构建web服务(New);
- 支持gethostbyname、mysqlclient、ssl等常用第三库(New);
- 可选的共享栈模式,单机轻松接入千万连接(New);
- 完善简洁的协程编程接口
* 类pthread接口设计,通过co_create、co_resume等简单清晰接口即可完成协程的创建与恢复;
* __thread的协程私有变量、协程间通信的协程信号量co_signal (New);
* 语言级别的lambda实现,结合协程原地编写并执行后台异步任务 (New);
* 基于epoll/kqueue实现的小而轻的网络框架,基于时间轮盘实现的高性能定时器;### Build
```bash
$ cd /path/to/libco
$ make
```or use cmake
```bash
$ cd /path/to/libco
$ mkdir build
$ cd build
$ cmake ..
$ make
```