Re: [VOTE] Apache Lucene.Net ready for graduation?

2012-07-11 Thread Gustavo Poll
+1: my work depends on Lucene.net, so thank you everybody! :D 2012/7/11 Noel > +1, Job well done. > > -Original Message- From: Allan, Brad (Wokingham) > Sent: Wednesday, July 11, 2012 8:15 AM > To: 'lucene-net-user@lucene.**apache.org > ' > Cc: 'gene...@incubator.apache.org' ; > 'luce

Re: Writing to an Online Index

2012-04-23 Thread Gustavo Poll
gt; at the time. > > > The IndexSearcher reads a snapshot of the index (based on segments), so you > need to reopen the index (IndexReader.ReOpen) to make the new document > visible to the IndexSearcher. > > Regards, > Anders Lybecker > > On Fri, Apr 20, 2012 at 2:54 PM, Gu

Writing to an Online Index

2012-04-20 Thread Gustavo Poll
rrent access (writing and searching)? PS: in the search code, a new IndexSearch instance is created at every search (may I continue like this or it is kind of mandatory a singleton IndexSearch?) Thanx you all by the attention! Any doubts about my explanation, please tell me... Gustavo Poll Sof

Re: [Lucene.Net] How to index/search a file name

2011-09-08 Thread Gustavo Poll
güsıöç] [güsiöç] [aß?de?] [??] [ssß] ModifiedStandardAnalyzer: (accent insensitive) [name.surn...@gmail.com] [123.456] [3,5] [at&t] [joao] [aviao] [calcao] [gusioc] [gusioc] [aß?de?] [??????] [] Thanx Gustavo Poll 2011/9/6 Gustavo Poll > thanks, I'll do it... > > 2011/9/

Re: [Lucene.Net] How to index/search a file name

2011-09-06 Thread Gustavo Poll
Filter(result); > >result = new ASCIIFoldingFilter(result); > >return result; > >} > >} > > > > DIGY > > > > -Original Message- > From: Gustavo Poll [mailto:gkp...@gmail.com] > Sent: Tuesday, September 06, 2011 10:06

Re: [Lucene.Net] How to index/search a file name

2011-09-06 Thread Gustavo Poll
this coherent? Appreciate any help please... Gustavo Poll 2011/9/6 Digy > A function is worth a thousand words J > > > > > >void Test() > >{ > >Analyzer[] analyzers = new Analyzer[] { new StandardAnalyzer(), > new Lucene

Re: [Lucene.Net] How to index/search a file name

2011-09-06 Thread Gustavo Poll
thanks DIGY, I have interest in that too... Let me see if i understood: UnaccentedWordAnalyzer is like Standard Analyzer, but accent insensitive? Thanks! Gustavo Poll 2011/9/6 digy digy > That may help > > UnaccentedWordAnalyzer @ > > https://svn.apache.org/repos/asf/incub

Re: [Lucene.Net] Lucene.net Index Dump

2011-07-27 Thread Gustavo Poll
nice, very easy to use! thanks to you all! 2011/7/27 Itamar Syn-Hershko > Yes, see Luke http://code.google.com/p/luke/ > > On Wed, Jul 27, 2011 at 8:16 PM, Gustavo Poll wrote: > > > Hi everyone! > > > > Could you please tell me if there is a tool that allows me t

[Lucene.Net] Lucene.net Index Dump

2011-07-27 Thread Gustavo Poll
Thanks in advance, Gustavo Poll

Re: [Lucene.Net] Simple Question: boolean operator shortcut

2011-07-25 Thread Gustavo Poll
IndexSearcher src = new IndexSearcher(rdr); >Query query1 = new QueryParser("field", new > WhitespaceAnalyzer()).Parse("a -b"); >Query query2 = new QueryParser("field", new > WhitespaceAnalyzer()).Parse("+a -b"); >TopDoc

[Lucene.Net] Simple Question: boolean operator shortcut

2011-07-25 Thread Gustavo Poll
AND b +a +b a OR b a b a AND NOT b +a –b Now I ask you: a - b will be also translated to a AND NOT b? Thanks! Gustavo Poll