Re: solr atomic updates stored="true", and copyField limitation

2013-09-21 Thread Shawn Heisey
On 9/19/2013 6:47 AM, Tanguy Moal wrote: > Quoting http://wiki.apache.org/solr/Atomic_Updates#Caveats_and_Limitations : >> all fields in your SchemaXml must be configured as stored="true" except for >> fields which are destinations -- which must be configured as >> stored="false" For fields cre

solr atomic updates stored="true", and copyField limitation

2013-09-19 Thread Tanguy Moal
Hello, I'm using solr 4.4. I have a solr core with a schema defining a bunch of different fields, and among them, a date field: - date: indexed and stored // the date used at search time In practice it's a TrieDateField but I think that's not relevant for the concern. It also has a multi

Re: copyField limitation

2008-01-23 Thread Grant Ingersoll
EMAIL PROTECTED] Sent: Thursday, January 17, 2008 6:11 PM To: solr-user@lucene.apache.org Subject: Re: copyField limitation : But, the directive in the schema has a limitation. It will only : copy data between fields with the same type. If the two fields are a : different type, the copy is ignore

Re: copyField limitation

2008-01-22 Thread Ryan McKinley
Solr does not now do this. I don't know if the Solr processing stack has this flexibility, or if it is worth adding it. I understand every example you have suggested -- i just don't get how it isn't possible. Can you post an exampe of the schema+commands that give you an error? If your go

RE: copyField limitation

2008-01-22 Thread Lance Norskog
: Thursday, January 17, 2008 6:11 PM To: solr-user@lucene.apache.org Subject: Re: copyField limitation : But, the directive in the schema has a limitation. It will only : copy data between fields with the same type. If the two fields are a : different type, the copy is ignored. This example would req

RE: copyField limitation

2008-01-21 Thread Lance Norskog
://issues.apache.org/jira/browse/SOLR-464 Thanks for your time, Lance Norskog -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Yonik Seeley Sent: Thursday, January 17, 2008 2:53 PM To: solr-user@lucene.apache.org Subject: Re: copyField limitation On Jan 17, 2008 4:53 PM

Re: copyField limitation

2008-01-17 Thread Chris Hostetter
: But, the directive in the schema has a limitation. It will only : copy data between fields with the same type. If the two fields are a : different type, the copy is ignored. This example would require : to translate 'sint' to 'integer'. i can't reproduce this problem. with the following add

Re: copyField limitation

2008-01-17 Thread Yonik Seeley
On Jan 17, 2008 4:53 PM, Lance Norskog <[EMAIL PROTECTED]> wrote: > Because sort works much faster on type 'integer', but range queries do not > work on type 'integer', Really? The sort speed should be identical. -Yonik

Re: copyField limitation

2008-01-17 Thread Ryan McKinley
But, the directive in the schema has a limitation. It will only copy data between fields with the same type. If the two fields are a different type, the copy is ignored. This example would require to translate 'sint' to 'integer'. really? what version are you running? what error do you ge

copyField limitation

2008-01-17 Thread Lance Norskog
Hi- Because sort works much faster on type 'integer', but range queries do not work on type 'integer', I want to do this: > ... So, a_number_sort always contains the same data as a_number, and now we can do a fast sort on 'a_number_sort' AND do a range query o