Re: Bert Clojure Implementation

2009-12-21 Thread Daniel Simms
On Fri, Dec 18, 2009 at 5:35 PM, Vagif Verdi wrote: > There a binary protocol library http://hessian.caucho.com/ +1 (also, there's a functionally equivalent text protocol, burlap, if you need human readability in some situations, say development or debugging. A common idiom is to use Burlap in

Re: Bert Clojure Implementation

2009-12-18 Thread Vagif Verdi
FYI There a binary protocol library http://hessian.caucho.com/ It is pure java, supports all the primitives BERT has, has bindings to many languages including Python, Ruby, Erlang, even Flash. And of course because it is java, it is readily available from clojure. It also supports streaming of cou

Bert Clojure Implementation

2009-12-18 Thread Trotter Cashion
Hi, I've mostly finished an implementation of Tom Preston-Werner's Bert library in clojure. Bert is a binary serialization protocol that you can read about at http://bert-rpc.org. My library is available on github at http://github.com/trotter/bert-clj. I'd love for people to give it a go and let m