<?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: Contrived FieldCache Load Test: Lucene 2.4 VS Lucene 2.9</title>
	<atom:link href="http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/</link>
	<description>Exclusively dedicated to Apache Lucene/Solr open source search technology</description>
	<lastBuildDate>Sat, 04 Feb 2012 01:13:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Apache Lucene 2.9的改进 &#124; 彭旭赣州seo优化</title>
		<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/comment-page-1/#comment-6440</link>
		<dc:creator>Apache Lucene 2.9的改进 &#124; 彭旭赣州seo优化</dc:creator>
		<pubDate>Sat, 25 Sep 2010 11:37:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=1154#comment-6440</guid>
		<description>[...] Imagination的Mark Miller运行了一个简单的性能测试，表明在5,000,000个不同字符串下的情况下，Lucene [...]</description>
		<content:encoded><![CDATA[<p>[...] Imagination的Mark Miller运行了一个简单的性能测试，表明在5,000,000个不同字符串下的情况下，Lucene [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 尝试使用IKVM运行Lucene 2.9.0版 &#124; 彭旭赣州seo优化</title>
		<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/comment-page-1/#comment-6434</link>
		<dc:creator>尝试使用IKVM运行Lucene 2.9.0版 &#124; 彭旭赣州seo优化</dc:creator>
		<pubDate>Fri, 24 Sep 2010 15:49:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=1154#comment-6434</guid>
		<description>[...] 　　在保证了正确性之后，要关注的便是性能了。根据我的推测，由于IKVM需要在Java生成的.NET程序集和BCL之间加上一层Runtime和JDK，因此其性能几乎一定会比Java原有的程序要差。不过，对于Lucene这种项目来说，算法才是性能的关键。例如，有人测试Lucene 2.9.0在某些情况下会比2.4有15倍左右的性能提升。不过由于没有很好的测试数据和场景，目前我只进行了最最简单的，不涉及磁盘IO的性能比较。 [...]</description>
		<content:encoded><![CDATA[<p>[...] 　　在保证了正确性之后，要关注的便是性能了。根据我的推测，由于IKVM需要在Java生成的.NET程序集和BCL之间加上一层Runtime和JDK，因此其性能几乎一定会比Java原有的程序要差。不过，对于Lucene这种项目来说，算法才是性能的关键。例如，有人测试Lucene 2.9.0在某些情况下会比2.4有15倍左右的性能提升。不过由于没有很好的测试数据和场景，目前我只进行了最最简单的，不涉及磁盘IO的性能比较。 [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Miller</title>
		<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/comment-page-1/#comment-3734</link>
		<dc:creator>Mark Miller</dc:creator>
		<pubDate>Thu, 24 Sep 2009 19:10:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=1154#comment-3734</guid>
		<description>Partially - since I am just timing the loading of the FieldCache (and not doing it per segment). It&#039;s just to make sure I have a bunch of segments - its only faster over multiple segments - its the same speed on an optimized Index. The more segments, the faster it is.

The reason that its also faster when you do it per segment (how Lucene works internally now), is that it avoids the speed trap that was in MultiTermEnum, and uses SegmentTermEnum - Yonik fixed that as well though, and this test shows the fruits of that. So essentially, it was both fixed and side stepped at the same time ;)</description>
		<content:encoded><![CDATA[<p>Partially &#8211; since I am just timing the loading of the FieldCache (and not doing it per segment). It&#8217;s just to make sure I have a bunch of segments &#8211; its only faster over multiple segments &#8211; its the same speed on an optimized Index. The more segments, the faster it is.</p>
<p>The reason that its also faster when you do it per segment (how Lucene works internally now), is that it avoids the speed trap that was in MultiTermEnum, and uses SegmentTermEnum &#8211; Yonik fixed that as well though, and this test shows the fruits of that. So essentially, it was both fixed and side stepped at the same time <img src='http://www.lucidimagination.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Otis Gospodnetic</title>
		<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/comment-page-1/#comment-3732</link>
		<dc:creator>Otis Gospodnetic</dc:creator>
		<pubDate>Thu, 24 Sep 2009 18:15:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=1154#comment-3732</guid>
		<description>mergeFactor=37 -- presumably in order to avoid any segments to be merged during indexing, thus making it possible to show off the new and faster segment reloading.</description>
		<content:encoded><![CDATA[<p>mergeFactor=37 &#8212; presumably in order to avoid any segments to be merged during indexing, thus making it possible to show off the new and faster segment reloading.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/comment-page-1/#comment-3727</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 24 Sep 2009 03:46:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=1154#comment-3727</guid>
		<description>Why did you use merge factor of 37?</description>
		<content:encoded><![CDATA[<p>Why did you use merge factor of 37?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Murphy - PostRank</title>
		<link>http://www.lucidimagination.com/blog/2009/09/22/contrived-fieldcache-load-test-lucene-2-4-vs-lucene-2-9/comment-page-1/#comment-3723</link>
		<dc:creator>Jim Murphy - PostRank</dc:creator>
		<pubDate>Wed, 23 Sep 2009 00:16:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.lucidimagination.com/blog/?p=1154#comment-3723</guid>
		<description>This was our biggest issue by far.  Its taken significant load off our servers when installing a new snapshot.

Thanks indeed Yonik.</description>
		<content:encoded><![CDATA[<p>This was our biggest issue by far.  Its taken significant load off our servers when installing a new snapshot.</p>
<p>Thanks indeed Yonik.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

