<?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"
	>
<channel>
	<title>Comments on: More optimization for comment relish plugin</title>
	<atom:link href="http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/</link>
	<description>patches 'n hacks</description>
	<pubDate>Sat, 01 Jan 2000 08:31:19 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6</generator>
		<item>
		<title>By: Mihai</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7603</link>
		<dc:creator>Mihai</dc:creator>
		<pubDate>Fri, 01 Aug 2008 03:05:24 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7603</guid>
		<description>You could do that if you would create a system to send emails in batches ... right now the plugin hooks into the comment posting function so it would be unacceptable to make the user wait for 2-5 minutes before his comment is posted.</description>
		<content:encoded><![CDATA[<p>You could do that if you would create a system to send emails in batches &#8230; right now the plugin hooks into the comment posting function so it would be unacceptable to make the user wait for 2-5 minutes before his comment is posted.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dan</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7601</link>
		<dc:creator>dan</dc:creator>
		<pubDate>Thu, 31 Jul 2008 19:57:57 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7601</guid>
		<description>great article.  thanks for  posting the optimization tips.

I got a question though.  Would it be a hard thing to do to add a delay into the email that relish sends out?  Ive noticed that when someone new leaves a comment on my site, the welcome email I set up is sent out to them immediately.  I would like to be able to put a delay of maybe 2 or 5 mins before the email is sent out.

thanks</description>
		<content:encoded><![CDATA[<p>great article.  thanks for  posting the optimization tips.</p>
<p>I got a question though.  Would it be a hard thing to do to add a delay into the email that relish sends out?  Ive noticed that when someone new leaves a comment on my site, the welcome email I set up is sent out to them immediately.  I would like to be able to put a delay of maybe 2 or 5 mins before the email is sent out.</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ted</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7600</link>
		<dc:creator>Ted</dc:creator>
		<pubDate>Mon, 28 Jul 2008 13:19:27 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7600</guid>
		<description>I was having the same problem as Zac, and I couldn't get the plugin to create the table, so I just manually created it.

Just replace the wp  in wp_cr_emailed if you have a different wordpress prefix.

CREATE TABLE wp_cr_emailed (
						emailed_ID mediumint(9) NOT NULL AUTO_INCREMENT,
						time bigint(11) DEFAULT '0' NOT NULL,
						email varchar(255) NOT NULL,
						UNIQUE KEY emailed_ID (emailed_ID),
						INDEX ( email )
					 );</description>
		<content:encoded><![CDATA[<p>I was having the same problem as Zac, and I couldn&#8217;t get the plugin to create the table, so I just manually created it.</p>
<p>Just replace the wp  in wp_cr_emailed if you have a different wordpress prefix.</p>
<p>CREATE TABLE wp_cr_emailed (<br />
						emailed_ID mediumint(9) NOT NULL AUTO_INCREMENT,<br />
						time bigint(11) DEFAULT &#8216;0&#8242; NOT NULL,<br />
						email varchar(255) NOT NULL,<br />
						UNIQUE KEY emailed_ID (emailed_ID),<br />
						INDEX ( email )<br />
					 );</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Get Personal With Your Commenters – Boost Your Subscribers (Video Guide) &#124; WordPress Web 2.0 Spot-Er</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7595</link>
		<dc:creator>Get Personal With Your Commenters – Boost Your Subscribers (Video Guide) &#124; WordPress Web 2.0 Spot-Er</dc:creator>
		<pubDate>Thu, 24 Jul 2008 11:48:37 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7595</guid>
		<description>[...] plugin has a resource utilization issues and can cause problems on shared hosting. But fear not. Here is a link to a blog post where all those issues have been addressed and plugin works quite [...]</description>
		<content:encoded><![CDATA[<p>[...] plugin has a resource utilization issues and can cause problems on shared hosting. But fear not. Here is a link to a blog post where all those issues have been addressed and plugin works quite [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mihai</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7594</link>
		<dc:creator>Mihai</dc:creator>
		<pubDate>Thu, 24 Jul 2008 10:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7594</guid>
		<description>The problem is most likely because the plugin was not able to create the cr_emailed table.  deactivate the plugin and ( If you can access wordpress database ) lookup in wp_options for cr_installed and set it to 'false' and then just reactivate the plugin. This should just create the table : cr_emailed. look for it in the database to make sure it's there. If it's there then you should not have that problem anymore.</description>
		<content:encoded><![CDATA[<p>The problem is most likely because the plugin was not able to create the cr_emailed table.  deactivate the plugin and ( If you can access wordpress database ) lookup in wp_options for cr_installed and set it to &#8216;false&#8217; and then just reactivate the plugin. This should just create the table : cr_emailed. look for it in the database to make sure it&#8217;s there. If it&#8217;s there then you should not have that problem anymore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex Sysoef</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7592</link>
		<dc:creator>Alex Sysoef</dc:creator>
		<pubDate>Thu, 24 Jul 2008 07:09:42 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7592</guid>
		<description>Same issue as with Zac above.

v3 on my WordPress 2.6 sends welcome email to each comment I leave. Can you guys look into it?</description>
		<content:encoded><![CDATA[<p>Same issue as with Zac above.</p>
<p>v3 on my WordPress 2.6 sends welcome email to each comment I leave. Can you guys look into it?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zac</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7549</link>
		<dc:creator>Zac</dc:creator>
		<pubDate>Wed, 25 Jun 2008 01:29:39 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-7549</guid>
		<description>So installed v3 on a test instance of my site and left 4 comments.  I got 4 welcome messages - anyone experienced this as well?

cheers,

Zac</description>
		<content:encoded><![CDATA[<p>So installed v3 on a test instance of my site and left 4 comments.  I got 4 welcome messages - anyone experienced this as well?</p>
<p>cheers,</p>
<p>Zac</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mihai</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6131</link>
		<dc:creator>Mihai</dc:creator>
		<pubDate>Wed, 26 Mar 2008 18:22:34 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6131</guid>
		<description>mostly lack of free time</description>
		<content:encoded><![CDATA[<p>mostly lack of free time</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krzysztof Lis</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6130</link>
		<dc:creator>Krzysztof Lis</dc:creator>
		<pubDate>Wed, 26 Mar 2008 18:12:19 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6130</guid>
		<description>So what stops you from adding some features?</description>
		<content:encoded><![CDATA[<p>So what stops you from adding some features?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mihai</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6129</link>
		<dc:creator>Mihai</dc:creator>
		<pubDate>Wed, 26 Mar 2008 17:43:36 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6129</guid>
		<description>Well it's not my plugin. I just fixed one issue with it.</description>
		<content:encoded><![CDATA[<p>Well it&#8217;s not my plugin. I just fixed one issue with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Krzysztof Lis</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6128</link>
		<dc:creator>Krzysztof Lis</dc:creator>
		<pubDate>Wed, 26 Mar 2008 17:25:59 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6128</guid>
		<description>Everything's cool, but your plugin doesn't support any letters from non-english charset. :(</description>
		<content:encoded><![CDATA[<p>Everything&#8217;s cool, but your plugin doesn&#8217;t support any letters from non-english charset. <img src='http://patchlog.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Norman</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6104</link>
		<dc:creator>Norman</dc:creator>
		<pubDate>Tue, 26 Feb 2008 15:43:15 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6104</guid>
		<description>I’m assuming with the two pingbacks that pingbacks work fine with this plugin (unless you haven’t installed it here) ;)</description>
		<content:encoded><![CDATA[<p>I’m assuming with the two pingbacks that pingbacks work fine with this plugin (unless you haven’t installed it here) <img src='http://patchlog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6066</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 16 Jan 2008 23:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-6066</guid>
		<description>Comment Relish was working great, until today when it crashed my blog when I accidentally made a trackback from one post to another.</description>
		<content:encoded><![CDATA[<p>Comment Relish was working great, until today when it crashed my blog when I accidentally made a trackback from one post to another.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Weekend Reading: August 25, 2007 : Average Joe Blogger</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-2789</link>
		<dc:creator>Weekend Reading: August 25, 2007 : Average Joe Blogger</dc:creator>
		<pubDate>Sat, 25 Aug 2007 07:04:52 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-2789</guid>
		<description>[...] those blogs with a large amount of comments. An optimized version of the plugin is available from PatchLog which greatly improves load [...]</description>
		<content:encoded><![CDATA[<p>[...] those blogs with a large amount of comments. An optimized version of the plugin is available from PatchLog which greatly improves load [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mihai</title>
		<link>http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-2741</link>
		<dc:creator>Mihai</dc:creator>
		<pubDate>Tue, 21 Aug 2007 19:50:04 +0000</pubDate>
		<guid isPermaLink="false">http://patchlog.com/wordpress/more-optimization-for-comment-relish-plugin/#comment-2741</guid>
		<description>nope, I just have to approve new comentators</description>
		<content:encoded><![CDATA[<p>nope, I just have to approve new comentators</p>
]]></content:encoded>
	</item>
</channel>
</rss>
