Hello,
I've a problem with relating values in two multi value fields. My documents
look like this:
3
A
B
C
D
200
400
240
310
My problem is that I've to search for a set of documents and display only the
value for option A, for example, and use t
Hi Jorge,
maybe I've defined
in your schema.xml
Torben
Am 04.10.2012 um 17:06 schrieb Jorge Luis Betancourt Gonzalez:
> Hi:
>
> I'm having an issue with solr 3.6.1 and I'm sensing that is a lack of
> understanding. I'm building a search engine, using of course solr to store
> th
200" and then
> query with a quoted phrase "A 200".
>
> You could use a special character like equal sign instead of space: "A=200"
> and then you don't have to quote it in the query.
>
> -- Jack Krupansky
>
> -Original Message-
you need facets is
> http://wiki.apache.org/solr/FieldCollapsing .
>
> On Thu, Oct 4, 2012 at 7:19 PM, Torben Honigbaum <
> torben.honigb...@neuland-bfi.de> wrote:
>
>> Hi Jack,
>>
>> thank you for your answer. The problem is, that I don't know the value
:
> denormalize your docs to option x value tuples, identify them by duping id.
>
>
> 3
> A
> 200
>
>
> 3
> B
> 400
>
>
> 3
> B
> 400
>
>
> 3
> C
> 240
>
>
> then collapse them by set "setid" fie
aller docs:
>
>
> 3
> value
> A
> 200
>
>
> 3
> value
> B
> 400
>
>
> 3
> value
> B
> 400
>
>
> 3
> value
> C
> 240
>
>
> and use group.facet=true
>
> On Sat, Oct 6, 2012 at 2:24 AM, To