| Projects on Google Code | Results 1 - 10 of 32 |
高性能,易扩展的网络框架,相对于Apache的MINA更加轻量级,源码更容易读懂,源码中有大量详细的中文注解,是一个非常不错的学习框架,框架主要至力于解决中国市场上手机网游的服务器端程序的编写。
= IoServer构建简单服务器例程(更详细的例程可下载例程包,或进入Wiki查看) =
服务器接收一个来自客户端的整型,并加一返回给客户端
{{{
package example;
import java.nio.ByteBuffer;
import java.util.ArrayList;
import java.util.List;
import com.yz....
轻量级的NIO框架:
* 提供线程池的配置,异步读写
* 提供可扩展的编解码功能,实现了的serialization和textline
* 提供类似servlet的filter功能
* 提供SSL加密协议的功能
* JMX动态监控系统的功能
* 使用简单,跟mina类似
* 性能好
Sample: echo服务器
{{{
public class EchoServer {
public static void main(String[] args) throws Exception {
NioServer server = ...
*XMemcached* is a high performance, easy to use multithreaded memcached client in *java*.
It's *nio* based (using my open source nio framework :*yanf4j*), and was carefully tuned to get top performance.
*Xmemcached main highlights:*
1.Supports all memcached text based protocols and binary p...
=Yet another nio framework for java=
Yanf4j is another nio framework for java,it is light weight,simple and have a great performance.It only supports non-blocking mode for tcp/udp server and client,it doesn't supports blocking mode.It needs jdk>=5.0.
==Example==
*A Time Server*
{{{
im...
*Naga is not a framework.*
Naga aims to be a very small NIO library that provides a handful of java classes to wrap the usual `Socket` and `ServerSocket` with asynchronous NIO counterparts (similar to NIO2 planned for Java 1.7).
All of this is driven from a _single_ thread, making it useful f...
1, it's a rpc framework
2, it aims provide high performance rpc
Weighing around 50KB, rupy is probably the smallest Java NIO application server in the world.
Rupy is inherently non-blocking asynchronous, which makes it the ideal candidate for high concurrency real-time applications pushing dynamic data.
Tested with [http://www.acme.com/software/http_load/ ...
A stateless, heapless, uni-threaded http server written to serve static content and easily stub in new custom REST methods.
java,
nio,
async,
http,
REST,
DirectIO,
DirectByteBuffer,
stateless,
heapless,
java.nio.Select,
httpd,
radixtree
Minimalistic network application framework based on Java NIO derived from [http://hc.apache.org/httpcomponents-core/index.html Apache HttpComponents HttpCore NIO] code.
A nio framework for scala