Snowball filter - Error instantiating stemmer for a language

2014-09-04 Thread atawfik
I am trying to use some filters from the snowball package. However, when I run the following code: Map args = new HashMap<>(); TokenStream tokenStream = new StandardTokenizer(Version.LUCENE_46, new StringReader("Some text")); args.put("luceneMatchVersion", "4.6"); args.put("language", "Catalan");

indexing json

2014-09-04 Thread Larry White
Hi, Is there a way to index an entire json document automatically as one can do with the new PostgreSQL json support? By automatically, I mean to create an inverted index entry (path: value) for each element in the document without having to specify in advance a schema. If not in Lucene, can this

Re: indexing json

2014-09-04 Thread Michael Sokolov
On 9/4/2014 6:46 AM, Larry White wrote: Hi, Is there a way to index an entire json document automatically as one can do with the new PostgreSQL json support? By automatically, I mean to create an inverted index entry (path: value) for each element in the document without having to specify in adv

Re: indexing json

2014-09-04 Thread Marcio Napoli
Hey! Elasticsearch Is a good option and uses Lucene as core :) http://www.elasticsearch.org/overview/elasticsearch/ []s Napoli http://numere.stela.org.br 2014-09-04 7:46 GMT-03:00 Larry White : > Hi, > > Is there a way to index an entire json document automatically as one can do > with the

Re: indexing json

2014-09-04 Thread Larry White
Elasticsearch does what I need, but I'd like to avoid bringing all the cluster management bits along with it. I will take a look at siren thanks. On Thu, Sep 4, 2014 at 8:11 AM, Marcio Napoli wrote: > Hey! > > Elasticsearch Is a good option and uses Lucene as core :) > > http://www.elasticsear

RE: indexing json

2014-09-04 Thread Uwe Schindler
Elasticsearch works perfectly fine with one node, also embedded :-) - Uwe Schindler H.-H.-Meier-Allee 63, D-28213 Bremen http://www.thetaphi.de eMail: u...@thetaphi.de > -Original Message- > From: Larry White [mailto:ljw1...@gmail.com] > Sent: Thursday, September 04, 2014 3:20 PM > T

Re: Snowball filter - Error instantiating stemmer for a language

2014-09-04 Thread Chris Hostetter
Odd ... the class org/tartarus/snowball/ext/CatalanStemmer.class should exist in the same jar as SnowballPorterFilterFactory, can you please confirm that you see it there? $ jar tf lucene-analyzers-common-4.6-SNAPSHOT.jar | grep CatalanStemmer org/tartarus/snowball/ext/CatalanStemmer.class Th

Re: Snowball filter - Error instantiating stemmer for a language

2014-09-04 Thread atawfik
Hi Chris, Thanks for the reply. I am sure I have lucene-analyzers-common.jar added to my eclipse project. However, I have figured out a way to run it. I am not sure whether this is a bug or undocumented workflow for Snowball filters. Map args = new HashMap<>(); TokenStream tokenStream = new Sta

In need of some guidance

2014-09-04 Thread akshay.jain
Hi, I am very new to Lucene. Can you provide me with a link to a tutorial which can guide me to creating lucene indexes of text files. Thanks - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional co