Re: Parsing cluster result's docs

2015-03-10 Thread Erick Erickson
You can get some fields back besides ID, see the carrot.title and
carrot.snippet params. I don't know a good way to get the full
underlying documents though.

Best,
Erick

On Mon, Mar 9, 2015 at 9:33 AM, Jorge Luis Lazo jorgeluis1...@gmail.com wrote:
 Hi,

 I have a Solr instance using the clustering component (with the Lingo
 algorithm) working perfectly. However when I get back the cluster results
 only the ID's of these come back with it. What is the easiest way to
 retrieve full documents instead? Should I parse these IDs into a new query
 to Solr, or is there some configuration I am missing to return full docs
 instead of IDs?

 If it matters, I am using Solr 4.10.

 Thanks.


Parsing cluster result's docs

2015-03-09 Thread Jorge Luis Lazo
Hi,

I have a Solr instance using the clustering component (with the Lingo
algorithm) working perfectly. However when I get back the cluster results
only the ID's of these come back with it. What is the easiest way to
retrieve full documents instead? Should I parse these IDs into a new query
to Solr, or is there some configuration I am missing to return full docs
instead of IDs?

If it matters, I am using Solr 4.10.

Thanks.


Re: Parsing cluster result's docs

2015-03-09 Thread Stanislaw Osinski
Hi,


 I have a Solr instance using the clustering component (with the Lingo
 algorithm) working perfectly. However when I get back the cluster results
 only the ID's of these come back with it. What is the easiest way to
 retrieve full documents instead? Should I parse these IDs into a new query
 to Solr, or is there some configuration I am missing to return full docs
 instead of IDs?

 If it matters, I am using Solr 4.10.


Clustering results are attached to the regular Solr response (the text of
the documents), much like shown in the docs:
https://cwiki.apache.org/confluence/display/solr/Result+Clustering, so with
the default configuration you should be getting both clusters and document
content. If that's not the case, please post your solrconfig.xml and the
URL you're using to initiate the search/clustering.

Staszek


Parsing cluster result's docs

2015-03-05 Thread Jorge Lazo

Hi,

I have a Solr instance using the clustering component (with the Lingo 
algorithm) working perfectly. However when I get back the cluster 
results only the ID's of these come back with it. What is the easiest 
way to retrieve full documents instead? Should I parse these IDs into a 
new query to Solr, or is there some configuration I am missing to return 
full docs instead of IDs?


If it matters, I am using Solr 4.10.

Thanks.