<?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: 100x Increase in SOLR Performance and Throughput</title>
	<atom:link href="http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/</link>
	<description>to obtain or receive from a source</description>
	<lastBuildDate>Sat, 30 Jul 2011 08:51:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: rajat rastogi</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-591</link>
		<dc:creator>rajat rastogi</dc:creator>
		<pubDate>Thu, 09 Jun 2011 11:09:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-591</guid>
		<description>sorry for wrong syntax
select?q=l&amp;qf=user&amp;fq=testing</description>
		<content:encoded><![CDATA[<p>sorry for wrong syntax<br />
select?q=l&amp;qf=user&amp;fq=testing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rajat rastogi</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-590</link>
		<dc:creator>rajat rastogi</dc:creator>
		<pubDate>Thu, 09 Jun 2011 11:07:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-590</guid>
		<description>try select?q=l&amp;qf=userand fq=testing</description>
		<content:encoded><![CDATA[<p>try select?q=l&amp;qf=userand fq=testing</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: rahul</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-533</link>
		<dc:creator>rahul</dc:creator>
		<pubDate>Wed, 16 Mar 2011 07:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-533</guid>
		<description>hi..

old query: 

select?q=testing&amp;fq=user:1

how do I convert into new query.

I want to search the term testing. 

if I change the query like below I believe it wont search the word testing..

select?q=1&amp;qf=user

any way to do it.. 

thanks.</description>
		<content:encoded><![CDATA[<p>hi..</p>
<p>old query: </p>
<p>select?q=testing&amp;fq=user:1</p>
<p>how do I convert into new query.</p>
<p>I want to search the term testing. </p>
<p>if I change the query like below I believe it wont search the word testing..</p>
<p>select?q=1&amp;qf=user</p>
<p>any way to do it.. </p>
<p>thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Leider</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-482</link>
		<dc:creator>Justin Leider</dc:creator>
		<pubDate>Thu, 10 Jun 2010 18:04:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-482</guid>
		<description>Marc, I would first filter by age since you know that is going to result in fewer rows to search than a binary, m/f search. Once you&#039;ve narrowed the fields down as much as you can then apply the filters. 

select?q=40&amp;qf=age&amp;fq=gender:male

SOLR 1.4 actually comes with a bunch of new filtering improvements where they apply filters during the query process. In this simple case it might do it for you in the background but I can&#039;t be positive. Benchmark it both ways and see what happens.</description>
		<content:encoded><![CDATA[<p>Marc, I would first filter by age since you know that is going to result in fewer rows to search than a binary, m/f search. Once you&#8217;ve narrowed the fields down as much as you can then apply the filters. </p>
<p>select?q=40&#038;qf=age&#038;fq=gender:male</p>
<p>SOLR 1.4 actually comes with a bunch of new filtering improvements where they apply filters during the query process. In this simple case it might do it for you in the background but I can&#8217;t be positive. Benchmark it both ways and see what happens.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Marc</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-480</link>
		<dc:creator>Marc</dc:creator>
		<pubDate>Tue, 01 Jun 2010 12:39:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-480</guid>
		<description>Interesting read.
How would you create a query with more than one element in this fashion?
e.g. you want to find every male person with the age 40

with the old query:
select?q=+&amp;fq=gender:male AND age:40

with the new query:
???

Thanks,
Marc</description>
		<content:encoded><![CDATA[<p>Interesting read.<br />
How would you create a query with more than one element in this fashion?<br />
e.g. you want to find every male person with the age 40</p>
<p>with the old query:<br />
select?q=+&amp;fq=gender:male AND age:40</p>
<p>with the new query:<br />
???</p>
<p>Thanks,<br />
Marc</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Derivante &#187; SOLR Filtering Performance Increase</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-141</link>
		<dc:creator>Derivante &#187; SOLR Filtering Performance Increase</dc:creator>
		<pubDate>Tue, 23 Jun 2009 15:56:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-141</guid>
		<description>[...] couple months ago I wrote about the terrible performance and a work around for SOLR / Lucene search engine. I discovered that performance would drop off a cliff while using [...]</description>
		<content:encoded><![CDATA[<p>[...] couple months ago I wrote about the terrible performance and a work around for SOLR / Lucene search engine. I discovered that performance would drop off a cliff while using [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: qf= vs fq=: &#171; Solrhack</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-85</link>
		<dc:creator>qf= vs fq=: &#171; Solrhack</dc:creator>
		<pubDate>Wed, 13 May 2009 16:56:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-85</guid>
		<description>[...] qf= vs&#160;fq=:  100 Times Performance Increase in Solr [...]</description>
		<content:encoded><![CDATA[<p>[...] qf= vs&nbsp;fq=:  100 Times Performance Increase in Solr [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Justin Leider</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-84</link>
		<dc:creator>Justin Leider</dc:creator>
		<pubDate>Mon, 11 May 2009 13:48:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-84</guid>
		<description>Jim,

I have benchmarked the performance differences between the old and new queries as well as their use of the fieldCache as well as the differences between single indexes and multi-core indexes. 

http://www.derivante.com/2009/05/05/solr-performance-benchmarks-single-vs-multi-core-index-shards/</description>
		<content:encoded><![CDATA[<p>Jim,</p>
<p>I have benchmarked the performance differences between the old and new queries as well as their use of the fieldCache as well as the differences between single indexes and multi-core indexes. </p>
<p><a href="http://www.derivante.com/2009/05/05/solr-performance-benchmarks-single-vs-multi-core-index-shards/" rel="nofollow">http://www.derivante.com/2009/05/05/solr-performance-benchmarks-single-vs-multi-core-index-shards/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jim Murphy</title>
		<link>http://www.derivante.com/2009/04/27/100x-increase-in-solr-performance-and-throughput/comment-page-1/#comment-83</link>
		<dc:creator>Jim Murphy</dc:creator>
		<pubDate>Sun, 10 May 2009 11:10:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.derivante.com/?p=341#comment-83</guid>
		<description>Does your new query style take advantage of the filterCache as well a the old one did?  I guess if overall perf is 100x better who cares. :)

Nice, We do similar things with our queries.  I&#039;ll see if this applies in our case.  +1 to understanding whats going on before optimizing!</description>
		<content:encoded><![CDATA[<p>Does your new query style take advantage of the filterCache as well a the old one did?  I guess if overall perf is 100x better who cares. <img src='http://www.derivante.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Nice, We do similar things with our queries.  I&#8217;ll see if this applies in our case.  +1 to understanding whats going on before optimizing!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
