Re: Searching dynamic fields

2007-10-15 Thread Erik Hatcher
On Oct 15, 2007, at 11:18 AM, Brian Carmalt wrote: A field copy implies a doubling of the data in the Index, right? OR should I not store or index the dynamic field and instead copy it to another field, and then let it be indexed and stored? For a purely searchable field like an aggregation

Re: Searching dynamic fields

2007-10-15 Thread Brian Carmalt
Hello Erik, A field copy implies a doubling of the data in the Index, right? OR should I not store or index the dynamic field and instead copy it to another field, and then let it be indexed and stored? Another possibility would be to search all fields, but that doesn't seem to be possible.

Re: Searching dynamic fields

2007-10-15 Thread Erik Hatcher
Brian - you can copyField all *_en fields to a common "contents_en" field, for example, and then search contents_en:(for whatever). You cannot currently search by field type, though that is an interesting possible feature. I would like to see Solr support wildcarded field names in request

Searching dynamic fields

2007-10-15 Thread Brian Carmalt
Hello all, Is there a way to search dynamicFields, without having to specify the name of the filed in a Query. Example: I have index a doc with the field name myDoc_text_en. and I have a dynamic field *_text_en which maps to a type of text_en. How can I search this field without knowing its