<?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 for A Programmer's Perspective</title>
	<atom:link href="http://www.jason-palmer.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.jason-palmer.com</link>
	<description></description>
	<lastBuildDate>Wed, 25 Jan 2012 22:50:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>Comment on PHP File Streaming with cat and passthru by Wojtek</title>
		<link>http://www.jason-palmer.com/2009/11/php-file-streaming-with-cat-and-passthru/comment-page-1/#comment-829</link>
		<dc:creator>Wojtek</dc:creator>
		<pubDate>Wed, 25 Jan 2012 22:50:03 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=63#comment-829</guid>
		<description>How about fpassthru? Does it eat up all the memory?</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>How about fpassthru? Does it eat up all the memory?</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to reindex a Solr Database by Will Olbrys</title>
		<link>http://www.jason-palmer.com/2011/05/how-to-reindex-a-solr-database/comment-page-1/#comment-828</link>
		<dc:creator>Will Olbrys</dc:creator>
		<pubDate>Thu, 19 Jan 2012 11:30:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=76#comment-828</guid>
		<description>there was one thing i couldnt figure out. i wanted to delete a field so instead of deleting it i set the field to index=false, stored=false, because removing the field straight-up from my schema caused solr to complain about the missing field and throw  a 400.

if anyone knows the right way to remove a field from a schema please let me know...</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>there was one thing i couldnt figure out. i wanted to delete a field so instead of deleting it i set the field to index=false, stored=false, because removing the field straight-up from my schema caused solr to complain about the missing field and throw  a 400.</p>
<p>if anyone knows the right way to remove a field from a schema please let me know&#8230;</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to reindex a Solr Database by Will Olbrys</title>
		<link>http://www.jason-palmer.com/2011/05/how-to-reindex-a-solr-database/comment-page-1/#comment-827</link>
		<dc:creator>Will Olbrys</dc:creator>
		<pubDate>Thu, 19 Jan 2012 11:27:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=76#comment-827</guid>
		<description>I altered the script slightly to be compatible with Solr 3.5, thus fixing the error Pratik was having. I&#039;ll post a patch to the repo eventually, but for now here is is pastebin style.

http://pastebin.com/fcKjkqzw</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>I altered the script slightly to be compatible with Solr 3.5, thus fixing the error Pratik was having. I&#8217;ll post a patch to the repo eventually, but for now here is is pastebin style.</p>
<p><a href="http://pastebin.com/fcKjkqzw" rel="nofollow">http://pastebin.com/fcKjkqzw</a></p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on Solr Stopwords &amp; Synonyms Collection by Antony Stubbs</title>
		<link>http://www.jason-palmer.com/2011/05/solr-stopwords-synonyms-collection/comment-page-1/#comment-825</link>
		<dc:creator>Antony Stubbs</dc:creator>
		<pubDate>Fri, 06 Jan 2012 17:09:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=79#comment-825</guid>
		<description>check it out: https://gist.github.com/562776
Converts a WordNet prolog file into a flat file useful for Solr synonym matching.</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>check it out: <a href="https://gist.github.com/562776" rel="nofollow">https://gist.github.com/562776</a><br />
Converts a WordNet prolog file into a flat file useful for Solr synonym matching.</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to reindex a Solr Database by Jason</title>
		<link>http://www.jason-palmer.com/2011/05/how-to-reindex-a-solr-database/comment-page-1/#comment-822</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Thu, 29 Dec 2011 12:41:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=76#comment-822</guid>
		<description>Hi Pratik,

This likely means that you do not have an id field in your Solr schema.  By default Solr defines a uniqueKey option and sets &quot;id&quot; as the value.  This creates a unique id for every document.

Without this there is no enforcing non-duplicates, thus this re-indexing process will only duplicate your records.

If you run a system that cannot (or should not) have a uniqueKey id then the &quot;re-indexing&quot; process for you would mean 1. delete all documents, 2. re-insert them.  Whereas the standard re-indexing process essentially does an update to the documents.

Hope this helps.</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Hi Pratik,</p>
<p>This likely means that you do not have an id field in your Solr schema.  By default Solr defines a uniqueKey option and sets &#8220;id&#8221; as the value.  This creates a unique id for every document.</p>
<p>Without this there is no enforcing non-duplicates, thus this re-indexing process will only duplicate your records.</p>
<p>If you run a system that cannot (or should not) have a uniqueKey id then the &#8220;re-indexing&#8221; process for you would mean 1. delete all documents, 2. re-insert them.  Whereas the standard re-indexing process essentially does an update to the documents.</p>
<p>Hope this helps.</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to reindex a Solr Database by Pratik</title>
		<link>http://www.jason-palmer.com/2011/05/how-to-reindex-a-solr-database/comment-page-1/#comment-821</link>
		<dc:creator>Pratik</dc:creator>
		<pubDate>Thu, 29 Dec 2011 08:44:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=76#comment-821</guid>
		<description>hi , used object instead of array , that works.
Now having some other error as - invalid key : id [24] , Any idea would help.</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>hi , used object instead of array , that works.<br />
Now having some other error as &#8211; invalid key : id [24] , Any idea would help.</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to reindex a Solr Database by Pratik</title>
		<link>http://www.jason-palmer.com/2011/05/how-to-reindex-a-solr-database/comment-page-1/#comment-820</link>
		<dc:creator>Pratik</dc:creator>
		<pubDate>Thu, 29 Dec 2011 08:39:51 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=76#comment-820</guid>
		<description>hi , use object instead of array , that works.
Now having some other error invalid key : id [24] , Any idea would help.</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>hi , use object instead of array , that works.<br />
Now having some other error invalid key : id [24] , Any idea would help.</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to reindex a Solr Database by Pratik</title>
		<link>http://www.jason-palmer.com/2011/05/how-to-reindex-a-solr-database/comment-page-1/#comment-819</link>
		<dc:creator>Pratik</dc:creator>
		<pubDate>Thu, 29 Dec 2011 06:48:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=76#comment-819</guid>
		<description>Needed some help - I am using your code for re-indexing , I am saving the &#039;solr_array&#039; to a file after encoding it into json and then passing json to the post function in which i removed the json encoding function , this i think should work but it gives an Solr exception : Expected OBJECT_START got ARRAY_START</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Needed some help &#8211; I am using your code for re-indexing , I am saving the &#8216;solr_array&#8217; to a file after encoding it into json and then passing json to the post function in which i removed the json encoding function , this i think should work but it gives an Solr exception : Expected OBJECT_START got ARRAY_START</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on WordPress API by Sunny</title>
		<link>http://www.jason-palmer.com/2009/07/wordpress-api/comment-page-1/#comment-808</link>
		<dc:creator>Sunny</dc:creator>
		<pubDate>Wed, 07 Dec 2011 21:22:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=52#comment-808</guid>
		<description>Hi Jason,

  I tried to download the code from here
http://www.jason-palmer.com/bronto.tar.gz
but its showing me 404 error page. Do you still have it available? Can you please share.

Thanks</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Hi Jason,</p>
<p>  I tried to download the code from here<br />
<a href="http://www.jason-palmer.com/bronto.tar.gz" rel="nofollow">http://www.jason-palmer.com/bronto.tar.gz</a><br />
but its showing me 404 error page. Do you still have it available? Can you please share.</p>
<p>Thanks</p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
	<item>
		<title>Comment on IMG Default Image by Tarun</title>
		<link>http://www.jason-palmer.com/2008/06/img-default-image/comment-page-1/#comment-807</link>
		<dc:creator>Tarun</dc:creator>
		<pubDate>Sun, 04 Dec 2011 09:40:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.jason-palmer.com/?p=6#comment-807</guid>
		<description>Hey...this really helpfull......:-)
thanx a ton... :-)</description>
		<content:encoded><![CDATA[<!-- google_ad_section_start --><p>Hey&#8230;this really helpfull&#8230;&#8230;:-)<br />
thanx a ton&#8230; <img src='http://www.jason-palmer.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> </p>
<!-- google_ad_section_end -->]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic Page Served (once) in 0.155 seconds -->

