<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Merging multiple Lucene indexes</title>
	<atom:link href="http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/</link>
	<description>A technical blog &#38; notepad by</description>
	<lastBuildDate>Tue, 10 Aug 2010 23:45:40 +0200</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: kaka</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-261</link>
		<dc:creator>kaka</dc:creator>
		<pubDate>Mon, 19 Jul 2010 04:21:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-261</guid>
		<description>Hi,
Will this work for solr indexes?? Since they are compatible it has to work, but in my case it is giving corrupt index exception..</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Will this work for solr indexes?? Since they are compatible it has to work, but in my case it is giving corrupt index exception..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JOAN RICE</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-258</link>
		<dc:creator>JOAN RICE</dc:creator>
		<pubDate>Tue, 01 Jun 2010 01:32:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-258</guid>
		<description>I&#039;ve been looking around blog.asteriosk.gr and actually am impressed by the exceptional content material here. I work the nightshift at my job and it is boring. I&#039;ve been coming right here for the past couple nights and reading. I simply needed to let you know that I have been enjoying what I&#039;ve seen and I look ahead to reading more.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve been looking around blog.asteriosk.gr and actually am impressed by the exceptional content material here. I work the nightshift at my job and it is boring. I&#8217;ve been coming right here for the past couple nights and reading. I simply needed to let you know that I have been enjoying what I&#8217;ve seen and I look ahead to reading more.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tim</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-257</link>
		<dc:creator>tim</dc:creator>
		<pubDate>Tue, 25 May 2010 14:16:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-257</guid>
		<description>Hi there, many thanks. This helped very well! IndexModifier is deprecated and lacked performance, so this is a very good alternative to work with...</description>
		<content:encoded><![CDATA[<p>Hi there, many thanks. This helped very well! IndexModifier is deprecated and lacked performance, so this is a very good alternative to work with&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asterios Katsifodimos</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-245</link>
		<dc:creator>Asterios Katsifodimos</dc:creator>
		<pubDate>Tue, 23 Feb 2010 13:04:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-245</guid>
		<description>Cool, thanks a lot Javier! I will try to run it myself and post the updated code!</description>
		<content:encoded><![CDATA[<p>Cool, thanks a lot Javier! I will try to run it myself and post the updated code!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier Teso</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-244</link>
		<dc:creator>Javier Teso</dc:creator>
		<pubDate>Tue, 23 Feb 2010 03:42:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-244</guid>
		<description>Sorry the number of lines were missing... 

LINE 55
IndexWriter writer = new IndexWriter( INDEX_DIR,
new StandardAnalyzer(),
true,
IndexWriter.MaxFieldLength.UNLIMITED);

LINE 65
indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ “/” + INDEXES_DIR.list()[i]));

LINE 70
writer.addIndexesNoOptimize(indexes);</description>
		<content:encoded><![CDATA[<p>Sorry the number of lines were missing&#8230; </p>
<p>LINE 55<br />
IndexWriter writer = new IndexWriter( INDEX_DIR,<br />
new StandardAnalyzer(),<br />
true,<br />
IndexWriter.MaxFieldLength.UNLIMITED);</p>
<p>LINE 65<br />
indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ “/” + INDEXES_DIR.list()[i]));</p>
<p>LINE 70<br />
writer.addIndexesNoOptimize(indexes);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Javier Teso</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-243</link>
		<dc:creator>Javier Teso</dc:creator>
		<pubDate>Tue, 23 Feb 2010 03:39:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-243</guid>
		<description>Yes, a few things have changed in lucene 3.0. You will have to replace the following lines:


IndexWriter writer = new IndexWriter(  INDEX_DIR,
                                                                     new StandardAnalyzer(),
                                                                      true,
                                                                      IndexWriter.MaxFieldLength.UNLIMITED);


indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ &quot;/&quot; + INDEXES_DIR.list()[i]));


writer.addIndexesNoOptimize(indexes); 

I think that is all, it works perfect, thanks for sharing your code!!</description>
		<content:encoded><![CDATA[<p>Yes, a few things have changed in lucene 3.0. You will have to replace the following lines:</p>
<p>IndexWriter writer = new IndexWriter(  INDEX_DIR,<br />
                                                                     new StandardAnalyzer(),<br />
                                                                      true,<br />
                                                                      IndexWriter.MaxFieldLength.UNLIMITED);</p>
<p>indexes[i] = FSDirectory.open(new File(INDEXES_DIR.getAbsolutePath()+ &#8220;/&#8221; + INDEXES_DIR.list()[i]));</p>
<p>writer.addIndexesNoOptimize(indexes); </p>
<p>I think that is all, it works perfect, thanks for sharing your code!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Asterios Katsifodimos</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-232</link>
		<dc:creator>Asterios Katsifodimos</dc:creator>
		<pubDate>Thu, 31 Dec 2009 18:36:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-232</guid>
		<description>Hi, I think I used Lucene 2.9.1 and I suppose that its not compatible with Lucene 3.0. Try to see which part of the code is causing the problem and if you find it, please let me know!</description>
		<content:encoded><![CDATA[<p>Hi, I think I used Lucene 2.9.1 and I suppose that its not compatible with Lucene 3.0. Try to see which part of the code is causing the problem and if you find it, please let me know!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tristartom</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-231</link>
		<dc:creator>tristartom</dc:creator>
		<pubDate>Thu, 31 Dec 2009 18:29:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-231</guid>
		<description>hi, which version of lucene did you build w/? it seems not compatible w/ the latest version 3.0.0.</description>
		<content:encoded><![CDATA[<p>hi, which version of lucene did you build w/? it seems not compatible w/ the latest version 3.0.0.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: miltos rulz</title>
		<link>http://blog.asteriosk.gr/2009/03/31/merging-multiple-lucene-indexes/comment-page-1/#comment-64</link>
		<dc:creator>miltos rulz</dc:creator>
		<pubDate>Fri, 15 May 2009 22:32:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.asteriosk.gr/?p=312#comment-64</guid>
		<description>wow...
what an interesting job gioufte...
epeidi den mporo na se bro oute sto skype oute sto fb
eipa
o m******s mallon tha parakolouthei to site toy opote as tou grapso kamia malakia na perasei i ora....
kai kapoies erotiseis ama kaneis tin lucene merge me enan aggourofa(i to gior to lefa) ti tha ginei?
arage o index writer me ton index merger einai opos o giors o pantalis me ton paulo?
kai alli mia erotisi, an i taxitita den itan to thema tote anti gia asxoleisai me lucene kai mpompolia kipriaka mipos tha mporouses bre arxidi na mazepseis lefta na rtheis pio noris stin ellada to kalokeri kai na me ta doseis gia na paro mixani?
aaaaaa?

p.s. elpizo na to diabaseis sti douleia kai na se kaigetai o kwlos alla na kseratheis sta gelia monaxos kai na gineis rezili sto ergasthrio(pou mallon oute tha se katalabei giati tha se exei sinithisei na xaskogelas monaxos...moutaf)</description>
		<content:encoded><![CDATA[<p>wow&#8230;<br />
what an interesting job gioufte&#8230;<br />
epeidi den mporo na se bro oute sto skype oute sto fb<br />
eipa<br />
o m******s mallon tha parakolouthei to site toy opote as tou grapso kamia malakia na perasei i ora&#8230;.<br />
kai kapoies erotiseis ama kaneis tin lucene merge me enan aggourofa(i to gior to lefa) ti tha ginei?<br />
arage o index writer me ton index merger einai opos o giors o pantalis me ton paulo?<br />
kai alli mia erotisi, an i taxitita den itan to thema tote anti gia asxoleisai me lucene kai mpompolia kipriaka mipos tha mporouses bre arxidi na mazepseis lefta na rtheis pio noris stin ellada to kalokeri kai na me ta doseis gia na paro mixani?<br />
aaaaaa?</p>
<p>p.s. elpizo na to diabaseis sti douleia kai na se kaigetai o kwlos alla na kseratheis sta gelia monaxos kai na gineis rezili sto ergasthrio(pou mallon oute tha se katalabei giati tha se exei sinithisei na xaskogelas monaxos&#8230;moutaf)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
