Re: Dedup component

2012-12-16 Thread Fergus McDowall
r > this purpose (along with some other for images, etc.). In the main app, > written in Symfoy2 + Solarium Bundle, we store the queries in this core, to > prevent the indexing of duplicated queries, I use the dedup component: > > > > class="org.apache.solr.update.proc

Re: Dedup component

2012-12-16 Thread Upayavira
aje original - > De: "Upayavira" > Para: solr-user@lucene.apache.org > Enviados: Sábado, 15 de Diciembre 2012 12:37:11 > Asunto: Re: Dedup component > > Nope, it is a Solr 4.0 thing. In order for it to work, you need to store > every field, as what it does behind

Re: Dedup component

2012-12-15 Thread Jorge Luis Betancourt Gonzalez
Exist any similar approach that I could use in solr 3.6.1 or should I add this logic to my application? - Mensaje original - De: "Upayavira" Para: solr-user@lucene.apache.org Enviados: Sábado, 15 de Diciembre 2012 12:37:11 Asunto: Re: Dedup component Nope, it is a Solr 4.0

Re: Dedup component

2012-12-15 Thread Upayavira
: > Is this updatable fields available in Solr 3.6.1, is the one I'm using > right now. > > - Mensaje original - > De: "Upayavira" > Para: solr-user@lucene.apache.org > Enviados: Sábado, 15 de Diciembre 2012 7:56:45 > Asunto: Re: Dedup component >

Re: Dedup component

2012-12-15 Thread Jorge Luis Betancourt Gonzalez
Is this updatable fields available in Solr 3.6.1, is the one I'm using right now. - Mensaje original - De: "Upayavira" Para: solr-user@lucene.apache.org Enviados: Sábado, 15 de Diciembre 2012 7:56:45 Asunto: Re: Dedup component Make the ID field out of the query text so

Re: Dedup component

2012-12-15 Thread Upayavira
Make the ID field out of the query text so you don't have to use the dedup component, then use the updatable fields functionality in Solr 4.0: $ curl http://localhost:8983/solr/update -H 'Content-type:application/json' -d ' [ {"id": "book1&quo

Dedup component

2012-12-14 Thread Jorge Luis Betancourt Gonzalez
es in this core, to prevent the indexing of duplicated queries, I use the dedup component: true false signature textsuggest,textng org.apache.solr.update.processor.TextProfileSignature Which prevent the store of very similar queries, but with this configuration, but what I really trying to