Sorting individually by each keyword.

2010-09-25 Thread jjml jkl
I want to sort individually by each keyword. ex:) There are Doc1,Doc2,Doc3. It have three keywords - "A","B","C" in each. [search result] keyword "A" : search result:Doc1,Doc2,Doc3 keyword "B" : search result:Doc3,Doc2,Doc1 keyword "C" : search result:Doc3,Doc1,Doc2 How do I implement the abo

questions about autocommit & committing documents

2010-09-25 Thread Andy
In the example solrconfig.xml that comes with Solr, the autocommit section: 1 1000 has been commented out. - With commented out, does it mean that every new document indexed to Solr is being auto-committed individually? Or that they are not being auto-committed at all? - If I ena

Re: bi-grams for common terms - any analyzers do that?

2010-09-25 Thread Yonik Seeley
On Sat, Sep 25, 2010 at 8:21 PM, Jonathan Rochkind wrote: > Huh, okay, I didn't know that #2 happened at all. Can you explain or point me > to documentation to explain when it happens?  I'm afraid I'm having trouble > understanding <<  if the analyzer returns more than one position back from a

RE: bi-grams for common terms - any analyzers do that?

2010-09-25 Thread Jonathan Rochkind
Huh, okay, I didn't know that #2 happened at all. Can you explain or point me to documentation to explain when it happens? I'm afraid I'm having trouble understanding << if the analyzer returns more than one position back from a "queryparser token" (whitespace). >> Not entirely sure what that

Re: TokenFilter that removes payload ?

2010-09-25 Thread Erick Erickson
Hmmm, why do you want to do this? I'm wondering if this is an XY problem (See:http://people.apache.org/~hossman/#xyproblem) The reason I ask is that you had to put the payloads into the input in the first place, and they don't affect searching unless you want them to. So why do you want to remove

Re: Regarding Capacity of Solr Indexes.

2010-09-25 Thread Erick Erickson
Really hard to say. Are you saying that you'll have on the order of 200M documents? What kinds of searches are you expecting to do? Sorting? Faceting? Really, the only way to know is to measure. You'll probably have to load up a single machine on successively larger data sets until you overload the

Re: How to tell whether a plugin is loaded?

2010-09-25 Thread Ingo Renner
Am 21.09.2010 um 21:58 schrieb Ingo Renner: Hi there, for the sake of documenting how to do this for those interested in the same stuff... > Is there any other URL I could query or am I missing something in my plugin > to make it show up there? in your QParserPlugin class simply implement in

Re: bi-grams for common terms - any analyzers do that?

2010-09-25 Thread Robert Muir
On Sat, Sep 25, 2010 at 10:33 AM, Jonathan Rochkind wrote: > Wow, I never heard of autoGeneratePhraseQueries before. Is there any > documentation of what it does? > > My initial reaction is being confused because this sounds kind of like the > opposite of hte original issue. The original issue is

RE: bi-grams for common terms - any analyzers do that?

2010-09-25 Thread Jonathan Rochkind
Wow, I never heard of autoGeneratePhraseQueries before. Is there any documentation of what it does? My initial reaction is being confused because this sounds kind of like the opposite of hte original issue. The original issue is that the query parsers are splitting on whitespace _before_ they

Re: matches in result grouping

2010-09-25 Thread Yonik Seeley
On Sat, Sep 25, 2010 at 2:07 AM, Koji Sekiguchi wrote: > Thanks Yonik for the explanation. > One more question. I think SearchGroupDocs.matches is unused > (I think TopDocsCollector.totalHits is used for displaying numFound > in each group). > Will it be used in the future for some reasons (if so

Re: LocalSolr unknown handler: geo

2010-09-25 Thread PeterKerk
@Lance Norskog-2: yes, im aware that its a request handler. I did configure it in my solrconfig.xml. I also compiled the jars from the available LocalSolr downloads and placed those in my current Solr directories. But still it doesnt work. Do you know of any LocalSolr mailinglist? -- View this

Re: LocalSolr unknown handler: geo

2010-09-25 Thread PeterKerk
@Grant Ingersoll-2 I'm ready to give this functionality a try. But before I start putting a lot of time and effort in it, I'd like to know if the following functionality should be possible to create: input: - latlong value - distance in kilometers (or miles) output based on Great Circle calcula

Re: bi-grams for common terms - any analyzers do that?

2010-09-25 Thread Robert Muir
On Sat, Sep 25, 2010 at 1:04 AM, Andy wrote: > > But I thought specialized analyzers like CJKAnalyzer are designed for those > languages, which don't use whitespace to separate words. > yes > > Isn't it up to the tokenizer, not the QueryParser, to decide how to split > the query into tokens? >