Re: Vector Search with OpenAI Embeddings: Lucene Is All You Need

2023-08-31 Thread Kent Fitch
condemning it. Kent Fitch On Thu, Aug 31, 2023 at 7:53 PM Michael McCandless < luc...@mikemccandless.com> wrote: > Thanks Michael, very interesting! I of course agree that Lucene is all > you need, heh ;) > > Jimmy Lin also tweeted about the strength of Lucene's HNSW: >

Re: Replicating Lucene Index with out SOLR

2008-08-27 Thread Kent Fitch
Check out this recipe for using rsync by Doug Cutting: http://www.mail-archive.com/[EMAIL PROTECTED]/msg12709.html Kent Fitch On Thu, Aug 28, 2008 at 1:38 PM, rahul_k123 [EMAIL PROTECTED] wrote: I have the following requirement Right now we have multiple indexes serving our web application

Re: How to get the doc ID from HITS

2008-02-21 Thread Kent Fitch
Two ways to work through the Hits object getting docids are: Hits hits = ... int hitCount = hits.length(); for (int i=0;ihitCount;i++) { int docId = hits.id[i] ; ... } or Iterator hitIterator = hits.iterator() ; while (hitIterator.hasNext()) { Hit hit = (Hit) hitIterator.next() ;

Lucene performance using a solid state disk (SSD)

2007-07-27 Thread Kent Fitch
read rate), it looks a promising match for some Lucene applications Regards, Kent Fitch - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]