Re: document boost

2003-02-02 Thread Philipp Chudinov
onday, February 03, 2003 3:55 AM Subject: Re: document boost > That is primary what that setBoost() on a Document instance if for, as > far as I know. > I don't see how one could use setBoost() on a document at search time > :) > > Otis > > --- Philipp Chudinov <[EM

document boost

2003-02-02 Thread Philipp Chudinov
Hi! Should I use document.setBoot() only when searching, or I can set it while indexing? The idea is that some documents can have higher priority then others, so it would be great if I could set boost according to document priority when adding document to the index, so it always have more relevance

range query error

2002-10-13 Thread Philipp Chudinov
Why this query: _published:[20010101 - 20020101] returns an error like this: Encountered "20020101" at line 1, column 27. Was expecting: "]" ...? whats wrong with syntax? if I query with string (_published:[ - 20020101]) it works with no problems... -- To unsubscribe, e-mail:

Re: JavaCC + Compile Problems

2002-09-08 Thread Philipp Chudinov
but take it from here better :) http://in4arch.ru/temp/JavaCC2_1.zip - Original Message - From: "f.b." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, September 08, 2002 2:39 PM Subject: JavaCC + Compile Problems > Hi All, > I just downloaded a copy of lucene src and tried to

Re: JavaCC + Compile Problems

2002-09-08 Thread Philipp Chudinov
i can send you the archive JavaCC2_1 is 802 kb/ by mail, if u want. Phil - Original Message - From: "f.b." <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, September 08, 2002 2:39 PM Subject: JavaCC + Compile Problems > Hi All, > I just downloaded a copy of lucene src and tried

Re: Order by date:SOLVED and HitsIterator sorting

2002-09-04 Thread Philipp Chudinov
This was > done in SearchBean in the contributions area if you want to see an > example. > > I hope this helps > > --Peter > > > On Monday, September 2, 2002, at 01:32 PM, Philipp Chudinov wrote: > > > Thank you, Terry. But I need to do it without additional cl

Re: Order by date

2002-09-02 Thread Philipp Chudinov
sort will be much > slower then getting all the values first and storing them). This was > done in SearchBean in the contributions area if you want to see an > example. > > I hope this helps > > --Peter > > > On Monday, September 2, 2002, at 01:32 PM, Philipp Chudinov wrote:

Re: Order by date

2002-09-02 Thread Philipp Chudinov
t; To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Tuesday, September 03, 2002 1:16 AM Subject: Re: Order by date > Try Peter Carlson's SearchBean contribution. Check the messages - there was > quite a bit of discussion on it. > > Regards, > > Terry > >

Order by date

2002-09-02 Thread Philipp Chudinov
Hi! How can I order search results by date? I just need to show n documents, ordered by date (desc). I index documents with doc.add(Field.Keyword("_published", new SimpleDateFormat("MMddHHmmss").format(date))); , so it gives something like "20020619165800" in this field. Then I use RangeQuer

Re: Support for russian morphology in Lucene

2002-03-06 Thread Philipp Chudinov
its mei :) having no ideas about morphology and great wishes to use lucene in russian. nice to see you here. maybe we should try to do things together. - Original Message - From: "Vadim Solonovich" <[EMAIL PROTECTED]> To: "Lucene Developers List" <[EMAIL PROTECTED]> Cc: "Lucene Users List

Re: lucene web-app & russian language

2002-03-02 Thread Philipp Chudinov
Ok, I'll try to make the russian analyzer and report to you in 2-3 days. Hope, about success. But if i fail, I'll report anyway :) - Original Message - From: "Andrew C. Oliver" <[EMAIL PROTECTED]> To: "Lucene Users List" <[EMAIL PROTECTED]> Sent: Saturday, March 02, 2002 9:28 PM Subject:

lucene web-app & russian language

2002-02-28 Thread Philipp Chudinov
Hi! I was trying the lucene web-app (lucene-1.2-rc5-dev.jar). I've created and indexed a simple html document with both english and russian words. it was ANSI encoded, if I check _3.fdt from created index, I can see my document indexed and both russian and english terms indexed (it opens in utf e

is there any way to create and manage a controlled vocabulary in lucene?

2002-02-25 Thread Philipp Chudinov
subj? -- To unsubscribe, e-mail: For additional commands, e-mail:

what encoding to use when indexing?

2001-12-18 Thread Philipp Chudinov
Hi! What encoding should documents be to index? I need to search windows-1251 xml files, so should I convert them to UTF-8 first, or not to make it possible to search in russian? Thanks. -- To unsubscribe, e-mail: For additional commands, e-mail:

should non-English docs be indexed as UTF-8 encoded?

2001-11-28 Thread Philipp Chudinov
Hi! I have some xml documents (encoded as windows-1251(russian)). Should they be converted to UTF-8 encoded documents to be indexed? Or I can index them in windows-1251 and just encode query (search) string to UTF-8? -- To unsubscribe, e-mail: For additional commands

Re: non-ASCII char search problem with nightly build (12 nov.)

2001-11-12 Thread Philipp Chudinov
Additional question: in QueryParser.jj beginning at strings #258-259 there is a unicode symbol range ("\u0080"-"\uFFFE"). I understand that Lucene can search an index with unicode symbols in this range, right? So, question. Russian (Cyrillic) symbols in unicode table are in this range: u\0401 - u\

non-ASCII char search problem with nightly build (12 nov.)

2001-11-12 Thread Philipp Chudinov
Hi! I am trying to use Lucene with russian texts. I created an index of xml documents (UTF-8 encoded), but when I am trying to search an index with a query from a servlet, it seems, that Lucene just finds nothing (though I am SURE it MUST find a term). Search string is reencoded to UTF-8 too, so I