RE: Bewildered by my search results, can anyone explain where I might be going wrong?

2021-06-21 Thread Trevor Nicholls
string. cheers T -Original Message- From: Trevor Nicholls Sent: Tuesday, 22 June 2021 08:10 To: java-user@lucene.apache.org Subject: Bewildered by my search results, can anyone explain where I might be going wrong? Sorry in advance for writing a small novel. Background: I am indexing and

Bewildered by my search results, can anyone explain where I might be going wrong?

2021-06-21 Thread Trevor Nicholls
Sorry in advance for writing a small novel. Background: I am indexing and searching technical reference documents, so the standard language analyzers aren't appropriate. For example, the content needs to be indexed so that a search for total matches total value, total[value], and total(value),

Anyone interested in a worked-out example of the SPIs for analyzer components?

2013-10-28 Thread Benson Margulies
I just built myself a sort of Solr-schema-in-a-test-tube. It's a class that builds a classloader on some JAR files and then uses the SPI mechanism to manufacture Analyzer objects made out of tokenizers and filters. I can make this visible in github, or even attach it to a JIRA, if anyo

Re: Does anyone have tips on managing cached filters?

2012-11-29 Thread Arjen van der Meijden
We have something similar with documens that can be tagged (and have many other relations). But for the matter of search we have two distinctions from your aproach: - We do actually index the relation's id (i.e. the tag's id) as part of the lucene-document and update the document if that relatio

Re: Does anyone have tips on managing cached filters?

2012-11-28 Thread Trejkaz
On Thu, Nov 29, 2012 at 4:57 PM, Trejkaz wrote: > doubt we're not Rats. Accidentally double-negatived that. I doubt we are the only ones. * TX - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional com

Re: Does anyone have tips on managing cached filters?

2012-11-28 Thread Trejkaz
On Wed, Nov 28, 2012 at 6:28 PM, Robert Muir wrote: > My point is really that lucene (especially clear in 4.0) assumes > indexreaders are immutable points in time. I don't think it makes sense for > us to provide any e.g. filtercaching or similar otherwise, because this is > a key simplification t

Re: Does anyone have tips on managing cached filters?

2012-11-27 Thread Robert Muir
On Wed, Nov 28, 2012 at 12:27 AM, Trejkaz wrote: > On Wed, Nov 28, 2012 at 2:09 AM, Robert Muir wrote: > > > > I don't understand how a filter could become invalid even though the > reader > > has not changed. > > I did state two ways in my last email, but just to re-iterate: > > (1): The filter

Re: Does anyone have tips on managing cached filters?

2012-11-27 Thread Trejkaz
On Wed, Nov 28, 2012 at 2:09 AM, Robert Muir wrote: > > I don't understand how a filter could become invalid even though the reader > has not changed. I did state two ways in my last email, but just to re-iterate: (1): The filter reflects a query constructed from lines in a text file. If some ot

Re: Does anyone have tips on managing cached filters?

2012-11-27 Thread Robert Muir
On Tue, Nov 27, 2012 at 6:17 AM, Trejkaz wrote: > > Ah, yeah... I should have been clearer on what I meant there. > > If you want to make a filter which relies on data that isn't in the > index, there is no mechanism for invalidation. One example of it is if > you have a filter which essentially

Re: Does anyone have tips on managing cached filters?

2012-11-27 Thread Trejkaz
On Tue, Nov 27, 2012 at 9:31 AM, Robert Muir wrote: > On Thu, Nov 22, 2012 at 11:10 PM, Trejkaz wrote: > >> >> As for actually doing the invalidation, CachingWrapperFilter itself >> doesn't appear to have any mechanism for invalidation at all, so I >> imagine I will be building a variation of it

Re: Does anyone have tips on managing cached filters?

2012-11-26 Thread Robert Muir
On Thu, Nov 22, 2012 at 11:10 PM, Trejkaz wrote: > > As for actually doing the invalidation, CachingWrapperFilter itself > doesn't appear to have any mechanism for invalidation at all, so I > imagine I will be building a variation of it with additional methods > to invalidate parts of the cache.

Does anyone have tips on managing cached filters?

2012-11-22 Thread Trejkaz
I recently implemented the ability for multiple users to open the index in the same process ("whoa", you might think, but this has been a single user application forever and we're only just making the platform capable of supporting more than that.) I found that filters are being stored twice and s

Can anyone guide me for this...!!!

2012-03-29 Thread neeraj shah
im using lucene2.9 and i need display search result like filename,filepath,textContent.. this text content highlight the matched string. When click on the search result ,it will go to the exact file and and the exact line. i tried to do it but my index size is very huge, i think im doing something

Have Anyone Needed a Method, getAnalyzer(String fieldName) of PerFieldAnalyzerWrapper Class, So Far?

2011-12-16 Thread 안재희 [Jade]
Hello~ Have anyone needed a method, getAnalyzer(String fieldName) of PerFieldAnalyzerWrapper class, so far? A method getDefaultAnalyzer() as well. It is useful in my project. The needs would be unusual, though. Implementing these methods is very simple. Does Apache Lucene have any plan to

Re: Is anyone using SOLR in Australia?

2010-03-26 Thread Ian Holsman
; page at: http://wiki.apache.org/solr/PublicServers Best Erick On Thu, Mar 25, 2010 at 1:34 AM, Andrew Brunowrote: Hi all, I was wondering if anyone is using SOLR successfully in Australia in a high end high transaction system?

Re: Is anyone using SOLR in Australia?

2010-03-25 Thread Erick Erickson
> I was wondering if anyone is using SOLR successfully in Australia in a > high end high transaction system? > > Cheers > Andrew > > - > To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org &

Is anyone using SOLR in Australia?

2010-03-24 Thread Andrew Bruno
Hi all, I was wondering if anyone is using SOLR successfully in Australia in a high end high transaction system? Cheers Andrew - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail

Re: Can anyone help me to implement highlighter in lucene 2.3.2

2009-10-31 Thread Chris Hostetter
: Subject: Can anyone help me to implement highlighter in lucene 2.3.2 : In-Reply-To: <867513fe0910300021k5f9766e1nf97f7e2bae5e1...@mail.gmail.com> http://people.apache.org/~hossman/#threadhijack Thread Hijacking on Mailing Lists When starting a new discussion on a mailing list, ple

Can anyone help me to implement highlighter in lucene 2.3.2

2009-10-30 Thread DHIVYA M
Hi all,   Am using lucene 2.3.2 I would like to have the search result similar to that of the google response. On my study i found that highlighter could do this. I found the highlighter class available in the contrib folder of lucene 2.3.2 .zip.   But am blind about using it to get the desired re

Re: Anyone used org.apache.lucene.analysis.compound.hyphenation.TernaryTree?

2009-07-16 Thread Grant Ingersoll
No, but I recall some discussion to move it up out of Analysis into a more generally useful place, as it can be appropriate for autosuggest and other things. On Jul 14, 2009, at 7:27 PM, Jason Rutherglen wrote: Just wondering if it works and if it's a good fit for autosuggest?

Anyone used org.apache.lucene.analysis.compound.hyphenation.TernaryTree?

2009-07-14 Thread Jason Rutherglen
Just wondering if it works and if it's a good fit for autosuggest? - To unsubscribe, e-mail: java-user-unsubscr...@lucene.apache.org For additional commands, e-mail: java-user-h...@lucene.apache.org

Re: Has anyone written SpanFuzzyQuery?

2008-12-09 Thread Mark Miller
http://issues.apache.org/jira/browse/LUCENE-522 note the bugs mentioned at the bottom. - Mark - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Has anyone written SpanFuzzyQuery?

2008-12-09 Thread Teruhiko Kurosaka
query implemented as a child of SpanQuery, I'm guessing. Has anyone written such SpanFuzzyQuery and can share it ? Background: I'd like to find "Barak Obama" with query "Barok Obamma" (similar terms, right order) but not with "Obama Barak" (exact terms, wrong o

Fieldable anyone?

2008-07-30 Thread Grant Ingersoll
Is there anyone out there that actually implements their own Fieldable instance? Just curious, as we are thinking of making some changes to it, but it would (very slightly) break our fairly strict back- compatibility rules (http://wiki.apache.org/lucene-java/BackwardsCompatibility ) so I

RE: anyone

2007-12-19 Thread Hartrich, James CTR USTRANSCOM J6
Excellent, I'm happy to see we're alive; look forward to some friendly banter :) -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of John Paul Sondag Sent: Wednesday, December 19, 2007 1:40 PM To: java-user@lucene.apache.org Subject: Re: anyone Yup

Re: anyone

2007-12-19 Thread John Paul Sondag
Yup --JP On Dec 19, 2007 1:14 PM, Michael McCandless <[EMAIL PROTECTED]> wrote: > > Yes. > > Mike > > Hartrich, James CTR USTRANSCOM J6 wrote: > > > Is this at least a semi-active list? > > > > James > > > > > - > To unsubscribe

Re: anyone

2007-12-19 Thread Michael McCandless
Yes. Mike Hartrich, James CTR USTRANSCOM J6 wrote: Is this at least a semi-active list? James - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: anyone

2007-12-19 Thread Steven A Rowe
Hi James, Over the last two months, it has averaged roughly 15 messages per day. Feels like more than semi-active to me. Steve On 12/19/2007 at 2:00 PM, Hartrich, James CTR USTRANSCOM J6 wrote: > Is this at least a semi-active list? > > James > >

anyone

2007-12-19 Thread Hartrich, James CTR USTRANSCOM J6
Is this at least a semi-active list? James

Re: Anyone have an XMLAnalyzer?

2007-01-30 Thread Rida Benjelloun
Hi, You can use Lius to index XML document. http://sourceforge.net/projects/lius/ http://www.doculibre.com/lius/doc-1.0_en.html On 1/25/07, Arturo Pérez <[EMAIL PROTECTED]> wrote: In article <[EMAIL PROTECTED]>, "Simon Willnauer" <[EMAIL PROTECTED]> wrote: > http://www.google.com/search?hl=de&

Re: Anyone have an XMLAnalyzer?

2007-01-25 Thread Arturo Pérez
In article <[EMAIL PROTECTED]>, "Simon Willnauer" <[EMAIL PROTECTED]> wrote: > http://www.google.com/search?hl=de&q=Lucene+XML+analyze&btnG=Google-Suche&meta > = Yeah, I'd seen that. I was hoping for something a bit more tightly integrated than Digester. More specifically, I already parse my

Re: Anyone have an XMLAnalyzer?

2007-01-25 Thread Simon Willnauer
It's just a google query away :) http://www.google.com/search?hl=de&q=Lucene+XML+analyze&btnG=Google-Suche&meta= best regards simon On 1/25/07, Arturo Perez <[EMAIL PROTECTED]> wrote: Is there an analyzer that can work with XML? Any suggestions for such? -arturo --

Anyone have an XMLAnalyzer?

2007-01-25 Thread Arturo Perez
Is there an analyzer that can work with XML? Any suggestions for such? -arturo - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: does anyone know of a 'smart' categorizing text pattern finder?

2006-11-24 Thread Erik Hatcher
On Nov 24, 2006, at 3:22 AM, Jin Yiqing wrote: Does this book really exit? I googled and didn't find any introduction about it :) No, I'm sure Bob meant to say "Lucene in Action" in which he contributed a wonderful case study on bits of LingPipe. Erik 2006/11/22, Erik Hatch

Re: does anyone know of a 'smart' categorizing text pattern finder?

2006-11-24 Thread Jin Yiqing
Does this book really exit? I googled and didn't find any introduction about it :) 2006/11/22, Erik Hatcher <[EMAIL PROTECTED]>: On Nov 21, 2006, at 5:46 PM, Bob Carpenter wrote: > LingPipe in Action. Now that's a book I'd love to own!

Re: does anyone know of a 'smart' categorizing text pattern finder?

2006-11-21 Thread Erik Hatcher
On Nov 21, 2006, at 5:46 PM, Bob Carpenter wrote: LingPipe in Action. Now that's a book I'd love to own! - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: does anyone know of a 'smart' categorizing text pattern finder?

2006-11-21 Thread Bob Carpenter
Vladimir Olenin wrote: Hi, I wonder if anyone here knows if there is a 'smart' text pattern finder, ideally written in Java. The library I'm looking for should be able to 'guess' the category of the particular text on the page, most probably by finding similaritie

Re: does anyone know of a 'smart' categorizing text pattern finder?

2006-09-27 Thread Grant Ingersoll
. Look at Named Entity extraction and its classifiers. Otis - Original Message From: Vladimir Olenin <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Monday, September 25, 2006 9:49:31 PM Subject: does anyone know of a 'smart' categorizing text pattern finder?

Re: does anyone know of a 'smart' categorizing text pattern finder?

2006-09-26 Thread Otis Gospodnetic
Look at LingPipe from Alias-i.com. Look at Named Entity extraction and its classifiers. Otis - Original Message From: Vladimir Olenin <[EMAIL PROTECTED]> To: java-user@lucene.apache.org Sent: Monday, September 25, 2006 9:49:31 PM Subject: does anyone know of a 'smart&#x

does anyone know of a 'smart' categorizing text pattern finder?

2006-09-25 Thread Vladimir Olenin
Hi, I wonder if anyone here knows if there is a 'smart' text pattern finder, ideally written in Java. The library I'm looking for should be able to 'guess' the category of the particular text on the page, most probably by finding similarities between the bulk

Re: Does anyone know of software for handling English plurals, "ing," etc?

2006-09-24 Thread Greg Colvin
e would not include it. Similarly, there is walk and walked, battery and batteries, wake and waking, and other such. I can't POSSIBLY be the first person to have wanted to do this. Does anyone know of software for detecting such combinations in English? Rumor hath that Google does thi

Does anyone know of software for handling English plurals, "ing," etc?

2006-09-24 Thread Bill Taylor
t POSSIBLY be the first person to have wanted to do this. Does anyone know of software for detecting such combinations in English? Rumor hath that Google does this sort of thing without telling you; that;'s one way they can find m

Anyone knows where I can find a spanish synonym list?

2006-09-24 Thread Néstor Boscán
Hi Anyone knows where I can find a spanish synonym list? Regards, Néstor Boscán

Re: Anyone know which way lucene read index file

2006-09-04 Thread karl wettin
On Tue, 2006-09-05 at 09:21 +0800, James liu wrote: > which way lucene read index file? http://lucene.apache.org/java/docs/fileformats.html It is not too far fetched to compare it with a Berkeley DB. - To unsubscribe, e-mail:

Anyone know which way lucene read index file

2006-09-04 Thread James liu
After reading 'lucene in action', i know the format of indexfile. which way lucene read index file? line by line? I m very interesting.

Re: Anyone used Zilverline?

2006-05-18 Thread Chris Lu
apidly searchable for users through a web-interface so I have been looking at Lucene. I have been looking at the Zilverline search tool (http://www.zilverline.org/zilverlineweb/space/home) which seems quite nice, particularly that you can use PDF, HTML or text collections. Does anyone have experience o

Anyone used Zilverline?

2006-05-18 Thread SG Edwards
://www.zilverline.org/zilverlineweb/space/home) which seems quite nice, particularly that you can use PDF, HTML or text collections. Does anyone have experience of this system or could someone recommend an alternative for fast database searching? If it would be better I could store the collection

anyone interested in taking over textmining.org?

2006-02-09 Thread sackley
The TextMining.org website keeps getting hacked and I don't have the time to upgrade postnuke to a more secure version. Also, because of legal reasons I can't maintain the software. I am more than willing to "hand-off" the project to lucene or someone else. It's an ap

Anyone using Chandler Lucene / Berkeley DB?

2005-08-04 Thread yahootintin . 11533894
how well does it work? does it provide the ability to search shortly after adding a document? - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]