Solr

Hi,

i need search functionality in my application, i got a solr server, that i am querying for results :slight_smile:
What is the best practice to do this kind of things? Do i need some abstraction layer?
Should i write my own Container with Item and Properties or just parse results from Solr and be happy? :bashful:

tnx.

Hi,

You don’t need “just parse results” but you will be very happy :grin: with SolrJ API (Java Client to Solr). You can also use LazyQueryContainer plugin for “lazy” pagination, and other plugins for charts, etc…

-Fuad

Thank you very much for you response, i already checked both LazyQueryContainer and LuceneContainer. At the moment i am using SolrJ and its quite simple with my own custom pagination.