Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
Re: [jetty-users] Possible to implement lower-level protocols in Jetty?

Hi,

On Wed, May 22, 2013 at 12:36 AM, ccleve <ccleve.tech@xxxxxxxxx> wrote:
> We use Jetty to communicate via http with the outside world. For high-speed
> communication within our cluster, though, we're considering something
> without the overhead of http, something like Thrift or Protocol buffers.

Use WebSocket.
CometD defaults on WebSocket for node-to-node communication withing an
Oort cluster.
Jetty offers both a WebSocket server and a WebSocket client.

> Is it possible to implement these things in Jetty itself? Is there some
> place to insert a lower-level handler? We really don't want to give up all
> of Jetty's cool asynchronous NIO stuff.

Before going into that, try WebSocket.

> We'd also rather not switch to Netty to make this work.

--
Simone Bordet
----
http://cometd.org
http://webtide.com
http://intalio.com
Developer advice, training, services and support
from the Jetty & CometD experts.
Intalio, the modern way to build business applications.


Back to the top