forked from Tencent/libco
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request Tencent#45 from dengoswei/master
add: PaxosStore coming soon..
- Loading branch information
Showing
1 changed file
with
6 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
#Libco | ||
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. | ||
|
||
Author: sunnyxu([email protected]), leiffyli([email protected]), [email protected]([email protected]), sarlmolchen([email protected]) | ||
|
@@ -16,6 +17,8 @@ libco通过仅有的几个函数接口 co_create/co_resume/co_yield 再配合 co | |
|
||
作者: sunnyxu([email protected]), leiffyli([email protected]), [email protected]([email protected]), sarlmolchen([email protected]) | ||
|
||
PS: **近期将开源PaxosStore,敬请期待。** | ||
|
||
### libco的特性 | ||
- 无需侵入业务逻辑,把多进程、多线程服务改造成协程服务,并发能力得到百倍提升; | ||
- 支持CGI框架,轻松构建web服务(New); | ||
|
@@ -43,3 +46,5 @@ $ cd build | |
$ cmake .. | ||
$ make | ||
``` | ||
|
||
|