bryce-anderson / blaze

Blazing fast NIO microframework and Http Parser

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

blaze

blaze is a Scala library for building asynchronous pipelines, with a focus on network IO. Its main goal is to service the network needs of the http4s project, but may find application elsewhere.

Features

  • Completely asynchronous pull based design
  • Type safe pipeline composition
  • NIO1 and NIO2 socket engines
  • SSL integration
  • HTTP/1.x and HTTP2 codecs
  • Basic HTTP/1.x server and client
  • Basic HTTP2 server

blazes goals are

  • Speed is the first priority
  • Asynchronous using Scala 2.10 Futures as the underpinning
  • Java NIO backend for fast/asynchronous network and file I/O
  • Offer a framework for rapid development of fast, asynchronous pipelines using Scala

What blaze is not

  • Purely functional. Functional is preferred except when in conflict with the first goal
  • Completely stable. blaze remains a work in progress and cannot be guaranteed to be bug free. Bug reports and patches are always appreciated!

Asynchronous network I/O

blaze was built with the Java 7 NIO2 features in mind. NIO2 offers a host of new features which are offered in a unified way. blaze offers TCP socket server support for both NIO1 and NIO2, depending on your preference. NIO1 tends to be the better performing technology for raw sockets.

Getting started

For a quick start, look in the examples project for some simple examples of HTTP, WebSocket, and a simple EchoServer.

Important blaze behaviors

  • By default, read and write requests should be serialized either manually, or with a SerializerStage.

Data flow

Useful asynchronous processing is done through the construction of a pipeline. A pipeline is composed of individual stages that perform operations such as decoding/encoding, SSL encryption, buffering, etc. The pipeline is constructed in a type safe manner using the PipelineBuilder types.

blaze is a pull based framework as opposed to the reactor and actor models found in other systems. Therefor, data flow is typically controlled by the tail of the pipeline. Data is written and requested using the Future type found in the Scala standard library.

blaze doesn't make any assumptions as to whether any stage is thread safe, so as noted above, either manually ensure a write is not performed before the previous write has completed and the same for reads, or use a SerializerStage or Serializer mixin to automatically sequence reads and writes for you.

Development

blaze is under active development and at this stage, everything is candidate for change. However, many features are reaching maturity, and will likely remain largely stable.

Contributors

The Contributors, as calculated by GitHub. Contributions and comments in the form of issues or pull requests are greatly appreciated.

Acknowledgments

Several concepts are inspired by the Jetty and Netty projects.

Licence

Blaze is licensed under the Apache 2 license. See the LICENSE file in the root project directory for more information.

About

Blazing fast NIO microframework and Http Parser

License:Other


Languages

Language:Scala 86.3%Language:Java 13.7%