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.
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");