Re: custom tokenizer error

2013-05-06 Thread Sarita Nair
baseTokenizer is reset in the #reset method. Sarita From: Jack Krupansky To: solr-user@lucene.apache.org Sent: Sunday, May 5, 2013 1:37 PM Subject: Re: custom tokenizer error I didn't notice any call to the "reset" method for your base

Re: custom tokenizer error

2013-05-05 Thread Jack Krupansky
I didn't notice any call to the "reset" method for your base tokenizer. Is there any reason that you didn't just use char filters to replace colon and periods with spaces? -- Jack Krupansky -Original Message- From: Sarita Nair Sent: Friday, May 03, 2013 2:43 PM To: solr-user@lucene.

RE: Custom Tokenizer

2007-02-12 Thread Chris Hostetter
: After reading the docs, I put it in example/solr/lib, but didn't remove : it from example/ext. Whoops. : : Long story short, putting the custom.jar into example/solr/lib worked : with java 5 and 6, so long as it wasn't also in example/ext. That's excellent news Devon, thanks or the followup. (

RE: Custom Tokenizer

2007-02-12 Thread Smith,Devon
] Sent: Friday, February 09, 2007 3:34 AM To: solr-user@lucene.apache.org Subject: RE: Custom Tokenizer Sorry, one other thing to verify... did you see an INFO message like this logged at somepoint... Adding 'custom.jar' to Solr classloader also be on the lookout for "

RE: Custom Tokenizer

2007-02-09 Thread Chris Hostetter
: Chris Hostetter <[EMAIL PROTECTED]> : Reply-To: solr-user@lucene.apache.org : To: solr-user@lucene.apache.org : Subject: RE: Custom Tokenizer : : : : Yes, this is with the Jetty that comes with Solr. Right now I'm just : : familiarizing myself with everything. : : i ment to follow up on

RE: Custom Tokenizer

2007-02-09 Thread Chris Hostetter
m: Chris Hostetter [mailto:[EMAIL PROTECTED] : Sent: Monday, February 05, 2007 12:52 AM : To: solr-user@lucene.apache.org : Subject: Re: Custom Tokenizer : : : : to develop and build the factory and tokenizer. However, when I start : : solr up, I get a stack trace, that says : "java.lang.No

RE: Custom Tokenizer

2007-02-05 Thread Smith,Devon
pache.org Subject: Re: Custom Tokenizer : to develop and build the factory and tokenizer. However, when I start : solr up, I get a stack trace, that says "java.lang.NoClassDefFoundError: : org/apache/solr/analysis/BaseTokenizerFactory" That's really confusing. : : Any thoughts on

RE: Custom Tokenizer

2007-02-05 Thread Smith,Devon
AM To: solr-user@lucene.apache.org Subject: Re: Custom Tokenizer Hmmm, classloader hell... I assume you are putting your analyzer in solr/lib? Perhaps try to explode the solr webapp and put your custom analyzer directly in WEB-INF/lib/ -Yonik On 2/2/07, Smith,Devon <[EMAIL PROTECTED]>

Re: Custom Tokenizer

2007-02-04 Thread Chris Hostetter
: to develop and build the factory and tokenizer. However, when I start : solr up, I get a stack trace, that says "java.lang.NoClassDefFoundError: : org/apache/solr/analysis/BaseTokenizerFactory" That's really confusing. : : Any thoughts on what I'm missing/doing wrong? based on your stack trace,

Re: Custom Tokenizer

2007-02-03 Thread Erik Hatcher
On Feb 3, 2007, at 11:18 AM, Yonik Seeley wrote: Hmmm, classloader hell... Yeah, I had a bad feeling about that external lib thing. It's a holy grail to allow dynamic pluggability in Java, but its much more difficult than it perhaps should be. I assume you are putting your analyzer in

Re: Custom Tokenizer

2007-02-03 Thread Yonik Seeley
Hmmm, classloader hell... I assume you are putting your analyzer in solr/lib? Perhaps try to explode the solr webapp and put your custom analyzer directly in WEB-INF/lib/ -Yonik On 2/2/07, Smith,Devon <[EMAIL PROTECTED]> wrote: Hi, I'm trying to get a custom tokenizer working, but I'm having