Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Search modules for play framework 2

I'm currently exploring Play framework 2 and I must say that I'm impressed! There is only one thing that I can't rap my head around(for the moment) and that is the search implementations.

Currently I have found: search module and elastic search but both are for Play 1

Do they work in Play 2?

I'm coming from Spring and Seam world where Hibernate Search is pretty common. Is there an implementation for that? How do you Play 2 guys implement your search functionality?

like image 621
jakob Avatar asked Oct 01 '12 13:10

jakob


1 Answers

AFAIK, there is not any core module for full text search in Play 2.0

There is an project on GitHub which incorporates ElasticSearch to Play 1.x: https://github.com/cleverage/play2-elasticsearch.

There is also sample how to update ES after each Ebean operation on Play 2.0: https://groups.google.com/forum/#!topic/play-framework/cZqt6U-2LHg%5B1-25%5D

like image 63
ndeverge Avatar answered Nov 18 '22 17:11

ndeverge