Re: [hibernate-dev] HSEARCH Serialization protocol ready for trunk

2011-08-06 Thread Emmanuel Bernard
On 6 août 2011, at 19:22, Sanne Grinovero wrote: > Hi Emmanuel, > > 2011/8/6 Emmanuel Bernard : >> I forgot to say that >> >> Our avro serializer is slower (1.6) than Java serialization esp when the VM >> is not warm (small loop value like = 1000 >> In evens up on longer loops like 10 >>

Re: [hibernate-dev] HSEARCH Serialization protocol ready for trunk

2011-08-06 Thread Emmanuel Bernard
> >> I'll send a pull request in the next few minutes >> >> I'll review it as soon as you do. > > I've sent it yesterday :) > https://github.com/hibernate/hibernate-search/pull/108 Sorry I mean a few hours ago. Damn my time senses are screwed.

Re: [hibernate-dev] HSEARCH Serialization protocol ready for trunk

2011-08-06 Thread Sanne Grinovero
Hi Emmanuel, 2011/8/6 Emmanuel Bernard : > I forgot to say that > > Our avro serializer is slower (1.6) than Java serialization esp when the VM > is not warm (small loop value like = 1000 > In evens up on longer loops like 10 > > Our avro serializer is slower (2.5) than Java serialization esp

Re: [hibernate-dev] HSEARCH Serialization protocol ready for trunk

2011-08-06 Thread Emmanuel Bernard
I forgot to say that Our avro serializer is slower (1.6) than Java serialization esp when the VM is not warm (small loop value like = 1000 In evens up on longer loops like 10 Our avro serializer is slower (2.5) than Java serialization esp when the VM is not warm (small loop value like = 100

[hibernate-dev] HSEARCH Serialization protocol ready for trunk

2011-08-06 Thread Emmanuel Bernard
I'm done with the serialization protocol. At least, it's in a good shape and should be integrated with trunk It uses Avro and is now integrated with both JGroups and JMS backends. I've abstracted Avro from our serialization logic so we can write alternative prototypes. I'd be interested to see