Re: How can I parse the TermVectorComponent response in SolrJ

2015-06-04 Thread Majid Laali
Hi, Based on a few hours googling, I concluded that there is no class in SOLR 5.1 that can parser JSON response of The Term Vector Component. I am not sure if it is fine to create an issue in the SOLR JIRA website and make patch to address it. I would be grateful to get any advice for that.

How can I parse the TermVectorComponent response in SolrJ

2015-05-22 Thread Majid Laali
Hi, I have a java program that sends a query to solr and get the term vector of a document. Something like this: SolrQuery solrQuery = new SolrQuery(); solrQuery.setRequestHandler("/tvrh"); solrQuery.setQuery("id:" + id); solrQuery.setParam("fl", textField); solrQuery.setParam("tv.tf", "true");