vivek sar wrote:
Hi,
...
I also read something about web-based Luke, but can't find it in the
contrib in 2.3, is it part of Lucene 2.3? How do I use it?
Thanks,
-vivek
I'm using Julien Nioche's tool, LIMO, which is probably what you mean by
a web-based Luke. To use it with 2.3, you need to replace the older
Lucene jar files with the newer versions (directions below). You can
find LIMO at http://limo.sf.net/ It's a fine tool for seeing what's
happing inside your index when X-Windows isn't an option.
-Jim H.
PS: The same technique can be used to drop Lucene 2.3 into solr. I
haven't identified any problems with either, but YMMV.
// Download and unpack the compiled source
cd /tmp
wget
http://government-grants.org/mirrors/apache.org/lucene/java/lucene-2.3.0.tar.gz
gzip -d lucene-2.3.0.tar.gz
tar xvf lucene-2.3.0.tar
// Replace the existing limo.war file with one that includes the new
lucene libraries
mkdir limo
cp <my limo.war path>/limo.war limo
cd limo
jar xvf limo.war
rm -f WEB-INF/lib/lucene*
cp ../lucene-2.3.0/lucene-core-2.3.0.jar WEB-INF/lib
cp ../lucene-2.3.0/contrib/analyzers/lucene-analyzers-2.3.0.jar WEB-INF/lib
cp ../lucene-2.3.0/contrib/highlighter/lucene-highlighter-2.3.0.jar
WEB-INF/lib
cp ../lucene-2.3.0/contrib/spellchecker/lucene-spellchecker-2.3.0.jar
WEB-INF/lib
cp ../lucene-2.3.0/contrib/snowball/lucene-snowball-2.3.0.jar WEB-INF/lib
rm limo.war
jar cvf limo.war *
cp limo.war <my limo.war path>
Enjoy the crunchy goodness of Lucene 2.3!
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]