Re: HTMLStripCharFilterFactory configuration problem

2010-04-17 Thread Ahmet Arslan
> Actually I am using SolrJ client.. > Is there anyway to do same using solrj. > > thanks If you are using Java, life is easier. You can use this static function before adding a field to SolrInputDocument. static String stripHTMLX(String value) { StringBuilder out = new StringBuilder(

Re: HTMLStripCharFilterFactory configuration problem

2010-04-17 Thread Ranveer Kumar
thanks.. Actually I am using SolrJ client.. Is there anyway to do same using solrj. thanks On Sat, Apr 17, 2010 at 8:06 PM, Ahmet Arslan wrote: > > > > Thanks for reply.. > > but how will I get the stored value instead of indexed > > value.. > > where I need to configure to get stored instead

Re: HTMLStripCharFilterFactory configuration problem

2010-04-17 Thread Ahmet Arslan
> Thanks for reply.. > but how will I get the stored value instead of indexed > value.. > where I need to configure to get stored instead of indexed > value. > please help... > You need to remove html tags before analysis (charfilter, tokenizer, tokenfilter) phase. For example if you are using

Re: HTMLStripCharFilterFactory configuration problem

2010-04-17 Thread Ranveer Kumar
Hi Sven, Thanks for reply.. but how will I get the stored value instead of indexed value.. where I need to configure to get stored instead of indexed value. please help... thanks with regards On Wed, Apr 14, 2010 at 3:16 PM, Sven Maurmann wrote: > Hi, > > please note that you get the stored va

Re: HTMLStripCharFilterFactory configuration problem

2010-04-14 Thread Sven Maurmann
Hi, please note that you get the stored value of the field as a result and not the indexed one. Cheers, Sven --On Wednesday, April 14, 2010 02:54:52 PM +0530 Ranveer Kumar wrote: Hi all, I am facing problem to configure HTMLStripCharFilterFactory. following is the schema :