Results 1 to 3 of 3
- 10-06-2008, 08:12 PM #1
Member
- Join Date
- Oct 2008
- Posts
- 68
- Rep Power
- 0
[SOLVED] Parallel/Asynchronous Faster indexing way on lucene
Hi, we are trying to create a huge index using lucene apis and looking for some way to do faster indexing.
Are there any frameworks or tools available which can leverage lucene and do faster index writing.
We are looking for something which can do parallel threading based indexing from database, any help would be appreciated.
____________________________________________
Priya,
Cooking is Fun | Eat Healthy Stay Fit | Sweets | Raita | Bread | DalCheers,
Eat Healthy Stay Fit
- 10-06-2008, 08:17 PM #2
Member
- Join Date
- Oct 2008
- Location
- US
- Posts
- 58
- Rep Power
- 0
A thread based implementation of Lucene IndexWriter can be found at
Lucene Asynchronous IndexWriter
This utilizes the Java 1.5 ArrayBlockingQueue for storing the documents.
A multithreaded data reader can add documents to this queue and a single writing thread can keep writing into index in a separate thread.
____________________________________________
Software Wiki | Interview FAQs | Lucene Search | Oracle | ORM | Struts2 | Job SeekerHave fun....
JAVA FAQs
- 10-06-2008, 08:20 PM #3
Member
- Join Date
- Oct 2008
- Posts
- 68
- Rep Power
- 0
Thanks, this is what we were looking for. We will do some more changes to it and use.
____________________________________________
Priya,
Cooking is Fun | Eat Healthy Stay Fit | Sweets | Raita | Bread | DalCheers,
Eat Healthy Stay Fit
Similar Threads
-
Lucene indexing ans searching code needed
By vgarg80 in forum JavaServer Pages (JSP) and JSTLReplies: 0Last Post: 06-07-2008, 11:31 AM -
Lucene Re-Indexing
By connect2srinath in forum LuceneReplies: 1Last Post: 05-11-2008, 05:35 PM -
Indexing starting with 1
By ravian in forum New To JavaReplies: 4Last Post: 01-04-2008, 12:03 PM


LinkBack URL
About LinkBacks
Reply With Quote
Bookmarks