Function Query, Required Clauses, and Matching

2010-10-25 Thread Dennis Kubes
A curiosity. Some of the documentation for function queries says they match every document in the index. When running a query that has boolean required clauses and an optional ValueSourceQuery or function query is the function query still matched against every document in the index or is it o

Re: Wikia search goes live today

2008-01-08 Thread Dennis Kubes
amp;hitsPerSite=1&lang=en&hitsPerPage=10&type=json So we are busy working on getting the data avaiable for download. Hopefully we should have a site setup within the next day or so. If anybody has any questions or would like to get some specific data feel free to send me an email.

Re: Wikia search goes live today

2008-01-08 Thread Dennis Kubes
Lukas On Jan 7, 2008 11:14 PM, Otis Gospodnetic <[EMAIL PROTECTED]> wrote: See my comment (around #45-50) on Techcrunch about that from late last night. There is actually one Wikia guy helping Nutch - Dennis Kubes. He must have been hitting reload on that TC post, because he IMed me quic

Re: Infrastructure Question

2007-12-22 Thread Dennis Kubes
k very well for this and give you the opportunity to grow your serving computer if/when needed. Dennis Kubes v k wrote: Sorry about that. For some reason, my post did not show up in the mailing list and I still cannot see it ( maybe a settings issue). I don't mean to barrage the mailing

Re: How to show category count with results?

2007-07-30 Thread Dennis Kubes
We found that a fast way to do this simply by running a query for each category and getting the maxDocs. There would be one query for category getting a single hit. Dennis Kubes Erick Erickson wrote: You might want to search the mail archive for "facets" or "faceted search&quo

Re: getting the maximum Hits doc

2007-01-04 Thread Dennis Kubes
Hits should be sorted according to score. Getting the first document should give you the one with the highest score. Dennis Nils Höller wrote: Hi, this is a short beginner question: I am searching for something in my program Hits hits = MySearcher.search(queryStr, searchRes.indexPath); N

Breaking up an index

2006-06-12 Thread Dennis Kubes
Is there a way to break up a single large index into many smaller indexes? Dennis - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

RE: Compound Indexes Problem

2006-03-30 Thread Dennis Kubes
According to the Lucene In Action book you can convert from one compound to multi-file and vice versa by setting the setCompoundFile method to true or false. But in running this myself I found that while I can convert from multi-file to compound, it doesn't convert back. Here is the code that I u

RE: writeChars method in IndexOutput

2006-03-30 Thread Dennis Kubes
utput totally valid UTF-8 Patches to make it do so are here: http://www.mail-archive.com/java-dev@lucene.apache.org/msg01987.html Should this be tackled pre or post 2.0? -Yonik http://incubator.apache.org/solr Solr, The Open Source Lucene Search Server On 3/30/06, Dennis Kubes <[EMAIL PROTECTED

writeChars method in IndexOutput

2006-03-30 Thread Dennis Kubes
I was reading up on conversion of characters to UTF-8 and I now understand why it is writing out UTF-8 (to be able to support most of the worlds languages with minimal space?). But after reading up on the algorithms for conversion as given below, does the writeChars method not support the U+1→U

Date Field Indexing

2006-03-29 Thread Dennis Kubes
Looking at the Lucene In Action book it shows indexing Date fields with something like this: Field.Keyword("datefield", new Date()); I know that the APIs have changed for Field and I see that there are no longer date constructors. So just confirming that we should use the DateTools class an