Execute a second request in a component

2011-01-28 Thread Damien Fontaine
Hi, I would execute a second solr request in a component. Someone has already done that ? Regards, Damien

Taxonomy in SOLR

2011-01-24 Thread Damien Fontaine
Hi, I am trying Solr and i have one question. In the schema that i set up, there are 10 fields with always same data(hierarchical taxonomies) but with 4 million documents, space disk and indexing time must be big. I need this field for auto complete. Is there another way to do this type of

Re: Taxonomy in SOLR

2011-01-24 Thread Damien Fontaine
My schema : field name=id type=string indexed=true stored=true required=true / !-- Document -- field name=lead type=string indexed=true stored=true / field name=title type=string indexed=true stored=true required=true / field name=text type=string indexed=true stored=true required=true / !--

Re: Taxonomy in SOLR

2011-01-24 Thread Damien Fontaine
Yes, i am not obliged to store taxonomies. My taxonomies are type of english_taxon_label = Berlin english_taxon_type = location english_taxon_hierarchy = 0/world 1/world/europe 2/world/europe/germany

Re: Taxonomy in SOLR

2011-01-24 Thread Damien Fontaine
Thanks Em, How i can calculate index time, update time and space disk used by one taxonomy ? Le 24/01/2011 10:58, Em a écrit : 100 Entries per taxon? Well, with Solr you got 100 taxon-entries * 4mio docs * 10 taxons. If your indexed taxon-versions are looking okay, you could leave out the

Re: Taxonomy in SOLR

2011-01-24 Thread Damien Fontaine
Le 24/01/2011 13:10, Em a écrit : Hi Daniem, ahm, the formula I wrote was no definitive guide, just some numbers I combined to visualize the amount of data - perhaps not even a complete formula. Well, when you can use your taxonomy as indexed-only you do not double the used disk space when

Re: Taxonomy in SOLR

2011-01-24 Thread Damien Fontaine
Thanks Em and Erick for your answers, Now, i better understand functioning of Solr. Damien Le 24/01/2011 16:23, Erick Erickson a écrit : First, the redundancy is certainly there, but that's what Solr does, handles large amounts of data. 4 million documents is actually a pretty small corpus by

Re: Search on two core and two schema

2011-01-19 Thread Damien Fontaine
cores, you have to do two seperate queries, and get two seperate result sets. Solr is not an rdbms. On 1/18/2011 12:24 PM, Damien Fontaine wrote: I want execute this query : Schema 1 : field name=id type=string indexed=true stored=true required=true / field name=title type=string indexed=true

Search on two core and two schema

2011-01-18 Thread Damien Fontaine
Hi, I would like make a search on two core with differents schemas. Sample : Schema Core1 - ID - Label - IDTaxon ... Schema Core2 - IDTaxon - Label - Hierarchy ... Schemas are very differents, i can't group them. Have you an idea to realize this search ? Thanks, Damien

Re: Search on two core and two schema

2011-01-18 Thread Damien Fontaine
On my first schema, there are informations about a document like title, lead, text etc and many UUID(each UUID is a taxon's ID) My second schema contains my taxonomies with auto-complete and facets. Le 18/01/2011 17:06, Stefan Matheis a écrit : Search on two cores but combine the results

Re: Search on two core and two schema

2011-01-18 Thread Damien Fontaine
I want execute this query : Schema 1 : field name=id type=string indexed=true stored=true required=true / field name=title type=string indexed=true stored=true required=true / field name=UUID_location type=string indexed=true stored=true required=true / Schema 2 : field name=UUID_location

Re: Search on two core and two schema

2011-01-18 Thread Damien Fontaine
use the Core 2 results in this own search 3. Core 1 map this own results and Core 2 results I believe that a plugin, patch ... is necessary. How do i proceed ? I must program a new handler ? On 1/18/2011 12:24 PM, Damien Fontaine wrote: I want execute this query : Schema 1 : field name=id type

MoreLikeThis and two field in mlt.fl

2010-11-25 Thread Damien Fontaine
Hello, I have a problem with MoreLikeThis on Solr 1.4.1. I can't put two field on mlt.fl. Example : text and title, only text is in interestingTerms /Damien