I have used it about a year ago in Jboss and Weblogic. It is pretty easy to integrate and get started. In general, it is a good tool.
Two things that you may want to be aware: (1) The concurrent update in Lucene is not intuitive. If the contents that you will search change very frequently, you may have more work to do to get it right. (2) If you do the updates as a backend process, dependent on your architecture, it is general not recommended to start a new threads from the application code. We ended using JMX but the multi-threaded code for updating Lucene index can get ugly sometimes. Things may be getting better for the newer version of the Lucene. Good luck, Zhiyong -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Mike Flynn Sent: Thursday, December 02, 2004 2:19 PM To: Research Triangle Java User's Group mailing list. Subject: Re: [Juglist] I need to integrate a search engine into a J2EE basedwebsite Lucene worked for us in the past. It's open source. http://jakarta.apache.org/lucene/docs/index.html On Thu, 2 Dec 2004 11:27:20 -0500, David Cooper <[EMAIL PROTECTED]> wrote: > I need to integrate a search engine into a J2EE based website. We are > using JBoss as our container. > > What does experience tell you to recommend? Please bear in mind that > like everyone and their brother my client no longer wants to pay for > software licenses so open source would be best. > > Thanks, > David Cooper > > _______________________________________________ > Juglist mailing list > [EMAIL PROTECTED] > http://trijug.org/mailman/listinfo/juglist_trijug.org > _______________________________________________ Juglist mailing list [EMAIL PROTECTED] http://trijug.org/mailman/listinfo/juglist_trijug.org _______________________________________________ Juglist mailing list [EMAIL PROTECTED] http://trijug.org/mailman/listinfo/juglist_trijug.org
