Skip to content
莫失莫忘 edited this page Nov 5, 2018 · 6 revisions

Welcome to the orca wiki!

orca是一个基于C++11/14风格的轻量级actor库,支持本地及远程消息通信。消息支持std::String或者自定义类型,但需要实现相关接口。orca在接口设计上参考过Theron,测试消息性能上基本优于Theron,也优于CAF。

orca的网络部分依赖libuv并封装应用层缓存以解决TCP分包/残包。orca中没有客户端/服务器的概念,每一个进程都是一个EndPoint,EndPoint与EndPoint之间相互建立连接并通信。

在example文件下提供以下例程:https://github.com/wlgq2/orca/tree/master/examples

API列表:https://github.com/wlgq2/orca/wiki/APIs

Clone this wiki locally