I've indexed few docs using SolrJ, now I want to search the same index using SolrJ.. I am not using embedded server..
I cannot even get results through their web based panel for my index.
ps : btw, the indexing is going fine, I checked that they were indexed by running a wild card search "*:*" through the query..
Here is the search snippet :
try {
SolrQuery query = new SolrQuery();
query.setQuery("from:a");
query.addSortField("id", SolrQuery.ORDER.asc);
QueryResponse rsp = server.query(query);
SolrDocumentList docs = rsp.getResults();
System.out.println(docs.getNumFound());
String[] a = new String[100];
System.out.println(docs.toString());
} catch (Exception e) {
e.printStackTrace();
}
Here is schema.xml Tell me if the link doesn't work...
*:*)? can you post your schema.xml? – Mauricio Scheffer Feb 24 '11 at 12:56fromfield with an exact value of 'a'? – Mauricio Scheffer Feb 24 '11 at 14:00