Giter Site home page Giter Site logo

wongsir / baseio Goto Github PK

View Code? Open in Web Editor NEW

This project forked from firenio/firenio

0.0 2.0 0.0 24.6 MB

An io framework project based on java nio

Home Page: https://www.generallycloud.com/

License: Apache License 2.0

Java 96.48% Shell 0.05% Batchfile 0.13% HTML 0.54% JavaScript 2.42% CSS 0.37%

baseio's Introduction

BaseIO Project

License Maven central Website

BaseIO is an io framework which can build network project fast, it based on java nio, it is popular with Developers because of simple and easy of use APIs and high-performance.

Features

  • easy to support reconnect (easy to support heart beat)
  • simple application container
  • simple hot deploy , eg: https://www.generallycloud.com/system-redeploy
  • support deploy http , micro service (depend on your protocol)
  • easy to supprot load balance, known:
  • virtual node based on hash
  • loop balance node
  • support component extend, known:
  • simple mq service, offer msg, poll msg
  • simple rtp service, for real time voice/video
  • simple invoke limit, for limit inovke times in unit time
  • support protocol extend, known:
  • Redis protocol, for detail {baseio-test}
  • Protobuf protocol, for detail {baseio-test}
  • LineBased protocol, for detail {baseio-test}
  • FixedLength protocol, for detail {baseio-test}
  • HTTP1.1 protocol, for detail: https://www.generallycloud.com/
  • WebSocket protocol, for detail: https://www.generallycloud.com/web-socket/chat/index.html
  • Protobase(custom) support text and binay and text binay mixed transfer, for detail {baseio-test}
  • load test
  • over 320K QPS (Socket,I7-4790,Win10)
  • over 200K QPS (Http1.1,I7-4790,Win10) ย ab load test

Quick Start

  • Maven Dependency
  <dependency>
  	<groupId>com.generallycloud</groupId>
  	<artifactId>baseio-all</artifactId>
  	<version>3.1.8-Alpha2</version>
  </dependency>  
  • A simple server:

      public static void main(String[] args) throws Exception {
    
      	IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
    
      		@Override
      		public void accept(SocketSession session, ReadFuture future) throws Exception {
      			future.write("yes server already accept your message:");
      			future.write(future.getReadText());
      			session.flush(future);
      		}
      	};
      	
      	SocketChannelContext context = new SocketChannelContextImpl(new ServerConfiguration(18300));
      	
      	SocketChannelAcceptor acceptor = new SocketChannelAcceptor(context);
      	
      	context.addSessionEventListener(new LoggerSocketSEListener());
      	
      	context.setIoEventHandleAdaptor(eventHandleAdaptor);
      	
      	context.setProtocolFactory(new FixedLengthProtocolFactory());
    
      	acceptor.bind();
      }
  • A simple client:

      public static void main(String[] args) throws Exception {
    
      	IoEventHandleAdaptor eventHandleAdaptor = new IoEventHandleAdaptor() {
    
      		@Override
      		public void accept(SocketSession session, ReadFuture future) throws Exception {
      			System.out.println();
      			System.out.println("____________________"+future.getReadText());
      			System.out.println();
      		}
      	};
      	
      	SocketChannelContext context = new SocketChannelContextImpl(new ServerConfiguration("localhost", 18300));
    
      	SocketChannelConnector connector = new SocketChannelConnector(context);
    
      	context.setIoEventHandleAdaptor(eventHandleAdaptor);
      	
      	context.addSessionEventListener(new LoggerSocketSEListener());
    
      	context.setProtocolFactory(new FixedLengthProtocolFactory());
      	
      	SocketSession session = connector.connect();
    
      	FixedLengthReadFuture future = new FixedLengthReadFutureImpl(context);
    
      	future.write("hello server!");
    
      	session.flush(future);
      	
      	ThreadUtil.sleep(100);
    
      	CloseUtil.close(connector);
      }

more samples {baseio-test}

Sample at website:

License

BaseIO is released under the Apache License 2.0.

For learn more, join this QQ group, more java technique can talk at there.

  • QQ group NO: 540637859
  • Join by click this link: img
  • Scan QR code:
    image

baseio's People

Contributors

wangkaish avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.