Re: Accessing Lucene Index stored in a jar file

2006-02-19 Thread Chris Brown
CTED] -- regards, Ahmed Saad -- regards, Ahmed Saad - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] -- Chris Brown http://www.orangepics.com/ Simple, Safe, Photo Sharing ---

Re: Searching over more than one Fields

2006-01-29 Thread Chris Brown
port which paragraph and file the content was found in, plus you could do paragraph specific searches if you like. Chris Brown OrangePics - Simple, Safe Photo Sharing http://www.orangepics.com/ - Original Message - From: "Jairo Sánchez Menéndez" <[EMAIL PROTECTED]> To: Sent:

Re: Searching over more than one Fields

2006-01-29 Thread Chris Brown
port which paragraph and file the content was found in, plus you could do paragraph specific searches if you like. Chris Brown OrangePics - Simple, Safe Photo Sharing http://www.orangepics.com/ - Original Message - From: "Jairo Sánchez Menéndez" <[EMAIL PROTECTED]> To: Sent:

Re: Searching over more than one Fields

2006-01-29 Thread Chris Brown
port which paragraph and file the content was found in, plus you could do paragraph specific searches if you like. Chris Brown OrangePics - Simple, Safe Photo Sharing http://www.orangepics.com/ - Original Message - From: "Jairo Sánchez Menéndez" <[EMAIL PROTECTED]> To:

Re: top n words within a results set?

2006-01-11 Thread Chris Brown
per. The trick is the Analyzer always passes in the Field name when it gets the TokenStream, -Grant Chris Brown wrote: Bear with me, I might be missing something My documents get indexed ( writer.addDocument(doc) ) with one IndexWriter created using one Analyzer (the SnowballAnalyzer). S

Re: top n words within a results set?

2006-01-11 Thread Chris Brown
cument for display purposes (I am assumming you are trying to display the values of the indexed field) that is not stemmed. The tradeoff is in disk space, of course. Chris Brown wrote: Okay, I've taken Grant's advice and aggregated the TermFreqVector's for each term in the appli

Re: top n words within a results set?

2006-01-11 Thread Chris Brown
2:34 PM Subject: Re: top n words within a results set? You could use term vectors to accomplish this. Get your hits for the website, then load the term vector for the field containing the keywords and add up the frequencies Chris Brown wrote: Hello, Is it possible to retrieve the top '

Re: top n words within a results set?

2006-01-09 Thread Chris Brown
12:34 PM Subject: Re: top n words within a results set? You could use term vectors to accomplish this. Get your hits for the website, then load the term vector for the field containing the keywords and add up the frequencies Chris Brown wrote: Hello, Is it possible to retrieve the top &#x

top n words within a results set?

2006-01-09 Thread Chris Brown
ser's photo website. Searches can be specific to a particular user's website or be performed globally across one, many or all websites. I've accomplished this with a field in the index called website. What I'd like to do is give each user the top ten words that appear on th