Re: Test File locks

2010-05-27 Thread Spencer Tickner
> path you are using on both machines?  and that same path works on one > machine but not the other? > > > : Date: Tue, 25 May 2010 15:43:27 -0700 > : From: Spencer Tickner > : Reply-To: java-user@lucene.apache.org > : To: java-user@lucene.apache.org > : Subject: Test Fil

Test File locks

2010-05-25 Thread Spencer Tickner
Hi Everyone, Thanks in advance for any help. I've been building lucene index to a MS Windows Server 2003 test environment with no problem. When attempting to build the same index onto a Windows Server 2008 machine I get the following error: Cannot create directory: \\whatever\index at o

Re: Location of HTMLStripCharFilter

2010-05-11 Thread Spencer Tickner
Sorry everyone,, found it in modules. Please disregard. Thanks, Spence On Tue, May 11, 2010 at 10:42 AM, Spencer Tickner wrote: > Hi Everyone, and thanks in advance for the help. I downloaded the > latest 4.0 dev release of the lucene/solr trunk. Everything seems to > be fine excep

Location of HTMLStripCharFilter

2010-05-11 Thread Spencer Tickner
Hi Everyone, and thanks in advance for the help. I downloaded the latest 4.0 dev release of the lucene/solr trunk. Everything seems to be fine except I can't for the life of me find the HTMLStripCharFilter Class. I've been poking around for awhile and I figure I'm missing something incredibly obvio

Re: number of hits per document

2008-06-10 Thread Spencer Tickner
Hi John, Sorry I don't have a solution for you but I'm trying to do the same thing. I would love to hear from you if you have any success with this. Cheers, Spencer [EMAIL PROTECTED] On Tue, Jun 10, 2008 at 6:28 AM, John Byrne <[EMAIL PROTECTED]> wrote: > Hi, > > I could do it that way, but cou

Re: Contrib Highlighter and Phrase search

2008-03-18 Thread Spencer Tickner
g/jira/browse/LUCENE-794 > > > > Spencer Tickner wrote: > > Hi List, > > > > Thanks in advance for any help. I'm working with the contrib > > highlighting class and am having issues when doing searches with a > > phrase. I've been able to du

Contrib Highlighter and Phrase search

2008-03-18 Thread Spencer Tickner
Hi List, Thanks in advance for any help. I'm working with the contrib highlighting class and am having issues when doing searches with a phrase. I've been able to duplicate this behaviour in the HighlighterTest class. When calling the testGetBestFragmentsPhrase() method I get the correct: John K

Re: Extracting terms from a query splitting a phrase.

2008-02-05 Thread Spencer Tickner
ther. Thanks, Spencer On Feb 5, 2008 12:50 PM, Spencer Tickner <[EMAIL PROTECTED]> wrote: > Hi Erick, > > Thanks for your response. I think you're right about the Whitespace > anlayzer. I was actually useing the StandardAnalyzer before and tried > the Whitespace analyz

Re: Extracting terms from a query splitting a phrase.

2008-02-05 Thread Spencer Tickner
quot; right next to "Act", you can use a SpanNearQuery with > two SpanTermQuerys and a slop of 0. > > The other thing to be aware of with WhitespaceAnalyzer is that > it doesn't lower case anything, so whether you'll get any hits > in your index depends upon the ana

Extracting terms from a query splitting a phrase.

2008-02-05 Thread Spencer Tickner
Hi List, Thanks in advance for the help. I'm trying to extract terms from a query. From the reading I've done a phrase such as "General Act" is considered a term. http://lucene.apache.org/java/docs/queryparsersyntax.html#Terms . However when I'm doing testing to get the extractTerms of my query it

Re: Phrase Search not returning results

2007-08-23 Thread Spencer Tickner
pache.org/lucene-java/ > LuceneFAQ#head-3558e5121806fb4fce80fc022d889484a9248b71 especially > the part on Luke. > > Luke will let you try out the various queries and show you what they > look like before being submitted. > > Cheers, > Grant > > On Aug 23, 2007, at 3:04 P

Phrase Search not returning results

2007-08-23 Thread Spencer Tickner
Hi List, Thanks in advance for the help. I'm creating a simple searching test based on Query Parser and from what I've read it should have no problems with a Phrase Search. However I can't seem to get any results back. I'm doing a simple index using the StandardAnalyzer. Output from the indexing

RE: MultiSearcher with mulitple filter

2007-08-14 Thread Spencer Tickner
scores > minScore } } } ScoreDoc[] scoreDocs = new ScoreDoc[hq.size()]; for (int i = hq.size() - 1; i >= 0; i--) // put docs in array scoreDocs[i] = (ScoreDoc) hq.pop(); return new TopFieldDocs(totalHits, scoreDocs, hq.getFields(), maxScore);

MultiSearcher with mulitple filter

2007-08-14 Thread Spencer Tickner
Hi List, Thanks in advance for the help. I can't wrap my head around the MultiSearcher. I need to search across multiple indexes, but also need to filter documents from users based on Access. The problem seems to be that MultiSearcher takes in 1 filter, however my filter varies from one index t

Re: Nested Fields

2007-08-10 Thread Spencer Tickner
ent element and added its content as a > > Field. > > > > I should add that I am also fairly new to Lucene, so just because I did it > > that way doesn't mean it's the best or even a good way. > > > > Jeff > > > > > > Spencer Tickner

Nested Fields

2007-08-03 Thread Spencer Tickner
Hi, and thanks in advace for any help. I'm fairly new to lucene so excuse the ignorance. I'm attempting to field an XML documents with nested fields. So: This That would give me hits for: bar:This bat:That foo:ThisThat The only way I can see a way of doing this now is to field each eleme