Re: SOLRJ - Searching text in all fields of a Bean

2010-10-15 Thread Subhash Bhushan
Hi Savvas, Thanks!! Was able to search using directive. I was using the default example schema packaged with solr. I added the following directive for title field and reindexed data: ** Regards, Subhash Bhushan. On Fri, Oct 8, 2010 at 2:09 PM, Savvas-Andreas Moysidis < savvas.andreas.mo

Re: SOLRJ - Searching text in all fields of a Bean

2010-10-15 Thread Subhash Bhushan
Value(" title"); String id = (String) resultDoc.getFieldValue("id"); //id is the uniqueKey field System.out.println(id); System.out.println(title); } * This query succeeds!* What am I doing wrong in dismax params? The title field is b

SOLRJ - Searching text in all fields of a Bean

2010-10-08 Thread Subhash Bhushan
id); System.out.println(solrTitle.title); } } catch (SolrServerException e) { e.printStackTrace(); } } -- Subhash Bhushan.