Re: copyField question

2012-03-22 Thread Tomás Fernández Löbbe
I meant, how many values in total? A single document may have 20, but are those 20 shared with other document (even if they have different score) or each document will have 10-20 completely different values? I think Solr could handle a couple hundred of fields, but I don't know how it would behave

Re: copyField question

2012-03-22 Thread ramdev.wudali
Hi Tomas: These fields are for searching only. Currently we have around 1.8M docs indexed.and Assuming each Doc has about 20 of these additional fields to be created as dynamic fields (worst case scenario), and also there are about 6K if these different values (I.e. If we were to create static

copyField question

2012-03-21 Thread ramdev.wudali
Hi: Is it it possible to store a value and a corresponding score in Solr as part of a single Field definition. And Can this field be a multivalued field ? I have several terms that are score. I would like to store them as part of a single field definition rather than having to create two

Re: copyField question

2012-03-21 Thread Tomás Fernández Löbbe
However, If the multivalued complex data field is not possible. Is it possible to use copyField directive to copy fields if a certain score is higher than a threshold ? I don't think that's possible out of the box, but you could use custom UpdateRequestProcessor for for that. How many different

Re: copyField question

2012-03-21 Thread ramdev.wudali
Hi Tomás: I think there is simplicity in your solution ;) A document would have Tens of different values. (at the most 20)Š So If were to follow your suggestion of naming a dynamic field with the value as the name of the field and the corresponding Score as the value. How would I go about

Re: copyField question

2009-12-10 Thread P Franks
Thanks. I will take a look at the TokenFilter. On Wed, Dec 9, 2009 at 11:44 PM, Shalin Shekhar Mangar shalinman...@gmail.com wrote: On Wed, Dec 9, 2009 at 11:43 PM, P Franks pfranks...@gmail.com wrote: All, Can one use the copyField option and copy a TextField field into a

copyField question

2009-12-09 Thread P Franks
All, Can one use the copyField option and copy a TextField field into a longField field? I have some data that i want to extract (filter) out all but the long and/or integer values. Example data:xxx yyy aaa 504 yyy 444234 eee hh I have the copyField in place and the destination

Re: copyField question

2009-12-09 Thread Shalin Shekhar Mangar
On Wed, Dec 9, 2009 at 11:43 PM, P Franks pfranks...@gmail.com wrote: All, Can one use the copyField option and copy a TextField field into a longField field? I have some data that i want to extract (filter) out all but the long and/or integer values. No, that won't work. It'd be best to