| 注册
请输入搜索内容

热门搜索

Java Linux MySQL PHP JavaScript Hibernate jQuery Nginx
fmms
13年前发布

高性能的 RPC 框架 nfs-rpc

nfs-rpc 是一个抽象的高性能的 RPC 框架,基于 mina/netty/grizzly/aio 实现。

  • client proxy,so u can call remote just like call local: UserService.getById(id);
  • server reflection,so u can intergrate the rpc framework with difference server implemenation,such as spring;
  • server direct call,u can implement a specify interface to provide for client call;
  • single or multi connections,in most case,single connection is enough,but in some cases,u'll need multi connections;
  • connection reuse,so u don't need block user thread to wait for connection;
  • synchronize call,rpc always need synchronize call;
  • timeout,u cann't wait for server return response forever,so u need timeout policy,especially for online app;
  • multi or custom serialize protocol(java/hessian/protobuf);
  • custom your protocol.


 

项目主页:http://www.open-open.com/lib/view/home/1335016376796

 本文由用户 fmms 自行上传分享,仅供网友学习交流。所有权归原作者,若您的权利被侵害,请联系管理员。
 转载本站原创文章,请注明出处,并保留原始链接、图片水印。
 本站是一个以用户分享为主的开源技术平台,欢迎各类分享!
 本文地址:https://www.open-open.com/lib/view/open1335016376796.html
RPC WEB服务/RPC/SOA