RE: RangeFilter

2010-01-14 Thread AlexElba
ruptIndexException e) { } catch (IOException e) { } } } Yeap I am using luke but this app is ram base index... Steven A Rowe wrote: > > Hi AlexElba, > > Did you completely re-index? > > If you did, then there is some other problem - can yo

Re: RangeFilter

2010-01-13 Thread AlexElba
e same way... But still not seeing :( any results AlexElba wrote: > > Hello, > > I am currently using lucene 2.4 and have document with 3 fields > > id > name > rank > > and have query and filter when I am trying to use rang filter on rank I am > n

Re: RangeFilter

2010-01-13 Thread AlexElba
Thanks Steve. Mike for now I can not upgrade... -- View this message in context: http://old.nabble.com/RangeFilter-tp27148785p27151315.html Sent from the Lucene - Java Users mailing list archive at Nabble.com. - To unsubscri

RangeFilter

2010-01-13 Thread AlexElba
Hello, I am currently using lucene 2.4 and have document with 3 fields id name rank and have query and filter when I am trying to use rang filter on rank I am not getting any result back RangeFilter rangeFilter = new RangeFilter("rank", "3", "10", true, true); I have documents which are in

Lucene Judge

2009-06-25 Thread AlexElba
Hello, I was looking to Judge interface with TrecJudge implementation and I am not clear how to use it. What data do I need to pass into constructor. Anybody have any experience with this class? Thanks, Alex -- View this message in context: http://www.nabble.com/Lucene-Judge-tp24209288p24209

Re: Appropriate analyzer

2009-04-21 Thread AlexElba
try to use RegexQuery Artyom Sokolov wrote: > > Hello. > > Currently I'm trying to find something like an analyzer to solve the > problem. > > Actually, what I need is next: search on a query string step-by-step, > trimming last char on each step. Small example: > > In index we've: abc, ab

Re: Best way for paging with TopDocs class?

2009-04-16 Thread AlexElba
Why you don't extend to HitCollector and put all logic you need into it? Ivan Vasilev-2 wrote: > > Hi All, > > As Hits class was deprecated in current Lucene and is expected to be > excluded from Lucene 3.0 we decided to change our code so that to use > TopDocs class. > Our app provides p

Re: Lucene SnowBall unexpected behavior for some terms

2009-04-16 Thread AlexElba
I look thru source code for snowball. I think this bug does exist in previous version as well I asked in there mailing list no response so far. This is there demo page it has the same issue http://snowball.tartarus.org/demo.php I was trying to find there pattern for words which will not get lemm

Lucene SnowBall unexpected behavior for some terms

2009-04-10 Thread AlexElba
Hello, I was working with lucene snowball 2.3.2 and I switch to 2.4.0. After switch I came by to some case where lucene doesn't do lemmatization correctly. So far I found only one case spa - spas. spas are not getting lemmatize at all... BTW I saw the same behavior on solr 1.3 Anybody have any

Re: TopDocCollector vs Hits: TopDocCollector slowing....

2009-02-18 Thread AlexElba
How many results were you getting? > > > > -Grant > > On Feb 3, 2009, at 8:37 PM, AlexElba wrote: > >> >> Hello, >> >> I was using lucene 2.3.2 with hits and switch to lucene 2.4.0 and >> now I am >> using TopDocCollector. >> &

Re: Lunene 2.3-2.4 switch: Scoring change

2009-02-18 Thread AlexElba
AlexElba wrote: > > Hello, > I have project which I am trying to switch from lucene 2.3.2 to 2.4 I am > getting some strange scores > > Before my code was: > > Hits hits= searcher.search(query); > Float score = hits.score(1) > > and scores from hist was

TopDocCollector vs Hits: TopDocCollector slowing....

2009-02-03 Thread AlexElba
Hello, I was using lucene 2.3.2 with hits and switch to lucene 2.4.0 and now I am using TopDocCollector. I have two queries which are running against the same index. One query is returning 80bytes information other one is returning 2000bytes With old Hits the query which was returning smaller d

Lunene 2.3-2.4 switch: Scoring change

2009-01-29 Thread AlexElba
Hello, I have project which I am trying to switch from lucene 2.3.2 to 2.4 I am getting some strange scores Before my code was: Hits hits= searcher.search(query); Float score = hits.score(1) and scores from hist was from 0-1; 1 was 100% match I change code to use hit collector TopDocCollect

Re: how to search for starts with multiple words in lucene

2008-11-26 Thread AlexElba
Hi, I think you can achieve your goal using StandardAnalyzer during indexing and for search, and use WildcardQuery for Query I think it will work!! naveen.a wrote: > > Hi, > > Below is a document in lucene > - > Field Value > --

Scoring issue

2008-11-26 Thread AlexElba
Hello , I have two document in my lucene index Document stored/uncompressed stored/uncompressed,indexed,tokenized stored/uncompressed> Document stored/uncompressed stored/uncompressed,indexed,tokenized stored/uncompressed,indexed,tokenized stored/uncompressed,indexed,tokenized stored/uncompresse

Lucene search for OR

2008-08-14 Thread AlexElba
Hello I am trying to search for or(Oregon) even when it is not capitalized it is not returning any results. How to search for 'or' ? -- View this message in context: http://www.nabble.com/Lucene-search-for-OR-tp18990623p18990623.html Sent from the Lucene - Java Users mailing list archive at Nab