Re: search through all fields

2007-07-22 Thread Mathieu Lecarme
Compass doesn't index database, but pojo mapped with an orm. Parent relation is nice handled. When a pojo is persisted, compass catch the information and index/ remove it with lucene. There is some troubles when you change something related to a pojo. Compass doesn't see that change. They were

Re: search through all fields

2007-07-22 Thread Mohammad Norouzi
Thanks Mthieu would you tell me does Compass support relationship between objects like a relational database? On 7/17/07, Mathieu Lecarme < [EMAIL PROTECTED]> wrote: http://www.opensymphony.com/compass/ The project is free, following Lucene version quickly, the forum is great, and the lead deve

Re: search through all fields

2007-07-17 Thread Mathieu Lecarme
http://www.opensymphony.com/compass/ The project is free, following Lucene version quickly, the forum is great, and the lead developer is quick reacting. M. Mohammad Norouzi a écrit : > Mathieu, > I need an object mapper for lucene would you please give me the > Compass web > site? is it open so

Re: search through all fields

2007-07-17 Thread Mohammad Norouzi
ad + body. > > I will increase your index size, no doubt. Might increase indexing time too. > > --Renaud > > > -Original Message- > From: Mohammad Norouzi [mailto:[EMAIL PROTECTED] > Sent: Sunday, July 15, 2007 9:40 PM > To: java-user@lucene.apache.org > Subject: Re

Re: search through all fields

2007-07-17 Thread Mathieu Lecarme
lto:[EMAIL PROTECTED] > Sent: Sunday, July 15, 2007 9:40 PM > To: java-user@lucene.apache.org > Subject: Re: search through all fields > > On 7/14/07, Grant Ingersoll <[EMAIL PROTECTED]> wrote: > >> I think he means index all your different fields into a singl

RE: search through all fields

2007-07-16 Thread Renaud Waldura
enaud -Original Message- From: Mohammad Norouzi [mailto:[EMAIL PROTECTED] Sent: Sunday, July 15, 2007 9:40 PM To: java-user@lucene.apache.org Subject: Re: search through all fields On 7/14/07, Grant Ingersoll <[EMAIL PROTECTED]> wrote: > > I think he means index all your diffe

Re: search through all fields

2007-07-15 Thread Mohammad Norouzi
On 7/14/07, Grant Ingersoll <[EMAIL PROTECTED]> wrote: I think he means index all your different fields into a single field named "all". Not sure what makes it special, it is just like any other field. but that really impossible ! because I have near millions records to be indexed so this j

Re: search through all fields

2007-07-14 Thread Grant Ingersoll
I think he means index all your different fields into a single field named "all". Not sure what makes it special, it is just like any other field. -Grant On Jul 14, 2007, at 7:59 AM, Mohammad Norouzi wrote: I've just tried "all" as a special field but it doesnt work!!! please take a loo

Re: search through all fields

2007-07-14 Thread Mohammad Norouzi
I've just tried "all" as a special field but it doesnt work!!! please take a look at my snippet code if I was mistaken QueryParser parser = new QueryParser("All",getAnalyzer(1)); Query q = parser.parse(myQuery.getQueryString()); thanks again On 7/14/07, Mohammad Norouzi <[EMAIL PROT

Re: search through all fields

2007-07-14 Thread Mohammad Norouzi
Thanks Mathieu you mean use a query like "all:test" using QueryParser? On 7/14/07, Mathieu Lecarme <[EMAIL PROTECTED]> wrote: you can use the "all" special field, but you loose the differents boost values. M. Le 14 juil. 07 à 10:50, Mohammad Norouzi a écrit : > Hello all > is there any way t

Re: search through all fields

2007-07-14 Thread Mathieu Lecarme
you can use the "all" special field, but you loose the differents boost values. M. Le 14 juil. 07 à 10:50, Mohammad Norouzi a écrit : Hello all is there any way to search through all the fields without using MultiFieldQueryParser? currently I am using this parser but it requires to pass all

search through all fields

2007-07-14 Thread Mohammad Norouzi
Hello all is there any way to search through all the fields without using MultiFieldQueryParser? currently I am using this parser but it requires to pass all fields as an array to its parse method and QueryParser will search through the default field if no field name is specified lots of thanks