Re: Re[6]: Question about copyField

2008-10-22 Thread Shalin Shekhar Mangar
ober 22, 2008 11:25 Joe > JN> To: solr-user@lucene.apache.org > JN> Subject: RE: Re[4]: Question about copyField > > JN> My bad. I misunderstood what you wanted. > > JN> The example I gave was for the searching side of things. Not the data > JN> representation in

Re[8]: Question about copyField

2008-10-22 Thread Aleksey Gogolev
; To: Joe Nguyen JN> Subject: Re[6]: Question about copyField JN>> It doesn't need to be a copy field, right? Could you create a new JN> field JN>> "ex", extract value from description, delete digits, and set to "ex" JN>> field before add/index

RE: Re[6]: Question about copyField

2008-10-22 Thread Joe Nguyen
Could you post fieldType specification for "ex"? What your regex look like? -Original Message- From: Aleksey Gogolev [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 11:39 Joe To: Joe Nguyen Subject: Re[6]: Question about copyField JN> It doesn't need

Re[6]: Question about copyField

2008-10-22 Thread Aleksey Gogolev
or not. JN> -Original Message- JN> From: Feak, Todd [mailto:[EMAIL PROTECTED] JN> Sent: Wednesday, October 22, 2008 11:25 Joe JN> To: solr-user@lucene.apache.org JN> Subject: RE: Re[4]: Question about copyField JN> My bad. I misunderstood what you wanted. JN> The examp

RE: Re[4]: Question about copyField

2008-10-22 Thread Joe Nguyen
ctober 22, 2008 11:25 Joe To: solr-user@lucene.apache.org Subject: RE: Re[4]: Question about copyField My bad. I misunderstood what you wanted. The example I gave was for the searching side of things. Not the data representation in the document. -Todd -Original Message- From: Aleks

RE: Re[4]: Question about copyField

2008-10-22 Thread Feak, Todd
[4]: Question about copyField FT> I would suggest doing this in your schema, then starting up Solr and FT> using the analysis admin page to see if it will index and search the way FT> you want. That way you don't have to pay the cost of actually indexing FT> the data to find ou

Re[4]: Question about copyField

2008-10-22 Thread Aleksey Gogolev
cal. The result of filter chain wasn't actually stored in the "ex" filed :( Anyway, thank you :) FT> -Todd FT> -Original Message- FT> From: Aleksey Gogolev [mailto:[EMAIL PROTECTED] FT> Sent: Wednesday, October 22, 2008 9:24 AM FT> To: Feak, Todd FT> Sub

RE: Re[2]: Question about copyField

2008-10-22 Thread Feak, Todd
Sent: Wednesday, October 22, 2008 9:24 AM To: Feak, Todd Subject: Re[2]: Question about copyField Thanks for reply. I want to make your point more exact, cause I'm not sure that I correctly understood you :) As far as I know (correct me please, if I wrong) type defines the way in which th

Re[2]: Question about copyField

2008-10-22 Thread Aleksey Gogolev
ype. FT> -Todd Feak FT> -Original Message- FT> From: Aleksey Gogolev [mailto:[EMAIL PROTECTED] FT> Sent: Wednesday, October 22, 2008 8:28 AM FT> To: solr-user@lucene.apache.org FT> Subject: Question about copyField FT> Hello. FT> I have field "description"

RE: Question about copyField

2008-10-22 Thread Feak, Todd
suggestion would get a new type. -Todd Feak -Original Message- From: Aleksey Gogolev [mailto:[EMAIL PROTECTED] Sent: Wednesday, October 22, 2008 8:28 AM To: solr-user@lucene.apache.org Subject: Question about copyField Hello. I have field "description" in my schema. And

Question about copyField

2008-10-22 Thread Aleksey Gogolev
Hello. I have field "description" in my schema. And I want make a filed "suggestion" with the same content. So I added following line to my schema.xml: But I also want to modify "description" string before copying it to "suggestion" field. I want to remove all comas, dots and slashes. Here