Help

A few people have asked me to publish my slides on Bean Validation and Hibernate Search. Here we go :)

Speaking of conferences, I will be presenting Hibernate Search and the magic of analyzers at Jazoon (Zurich) on Thursday 25th at 11:30. See you there.

4 comments:
 
13. Jun 2009, 17:40 CET | Link
Sanne

Thanks! do you know if we could download also sound and/or video of the presentations?

ReplyQuote
 
14. Jun 2009, 09:04 CET | Link

No video. The audio has bee captured but typically Sun releases it much later if ever.

 
27. Jun 2009, 02:28 CET | Link
Jonathan Cook
Hi,

I enjoyed your presentation on Hibernate Search at Jazoon yesterday. I am working for the BBC and specificially in the domain of sports where we have an enormous amount of interesting data that we would like to open up to the public and let them essentially create their own queries but not using sql :)

We are already using hibernate with annotations so it seems like this might be a good fit. I wondered though if it would work with queries like.

"How many goals has Ronaldo scored" which would really be some kind of count query or is it not so sophisticated and limited to the sort of examples you demonstrated?

Thanks
Jon

 
30. Jun 2009, 18:26 CET | Link
Emmanuel Bernard | emmanuel(AT)hibernate.org

Unfortunately, Lucene does not support aggregation queries out of the box but I gave some thoughts on that and you can do some of them easily. In your case you ll need to find all games ronaldo score and manually add them Alternatively, if you have one entry per goal in the index, simply use FullTextQuery.getResultSize() which is equivalent to count() if each line is equivalent to 1 :)

Post Comment