<?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 blog.cnizz.com</title>
	<atom:link href="http://blog.cnizz.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.cnizz.com</link>
	<description>my little notepad</description>
	<lastBuildDate>Wed, 18 Aug 2010 19:52:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on MySQL InnoDb inserts are slow, really slow! by chris</title>
		<link>http://blog.cnizz.com/2010/06/12/mysql-innodb-inserts-are-slow-really-slow/comment-page-1/#comment-72415</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Wed, 18 Aug 2010 19:52:18 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cnizz.com/?p=445#comment-72415</guid>
		<description>Good to know Nick, thanks for the contribution.  Makes sense after reading &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/commit.html&quot; rel=&quot;nofollow&quot;&gt;http://dev.mysql.com/doc/refman/5.0/en/commit.html&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Good to know Nick, thanks for the contribution.  Makes sense after reading <a href="http://dev.mysql.com/doc/refman/5.0/en/commit.html" rel="nofollow">http://dev.mysql.com/doc/refman/5.0/en/commit.html</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL InnoDb inserts are slow, really slow! by Nick</title>
		<link>http://blog.cnizz.com/2010/06/12/mysql-innodb-inserts-are-slow-really-slow/comment-page-1/#comment-72413</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Wed, 18 Aug 2010 18:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cnizz.com/?p=445#comment-72413</guid>
		<description>I found that if I set AutoCommit=0 before the inserts, then commit after Inserts i can cut off a lot of time. still not as fast but around 2 seconds.
doesn&#039;t work if the call is to a stored procedure(which does the insert).

On my development machine i&#039;m not experiencing this at all.  (i dont need to add the autocommit = 0 and i still see &lt; 1 second performance)

the production machine is a VPS, so im suspecting that disk usage may be the primary culprit and someone else has a high disk usage application.

Thanks for the link.</description>
		<content:encoded><![CDATA[<p>I found that if I set AutoCommit=0 before the inserts, then commit after Inserts i can cut off a lot of time. still not as fast but around 2 seconds.<br />
doesn&#8217;t work if the call is to a stored procedure(which does the insert).</p>
<p>On my development machine i&#8217;m not experiencing this at all.  (i dont need to add the autocommit = 0 and i still see &lt; 1 second performance)</p>
<p>the production machine is a VPS, so im suspecting that disk usage may be the primary culprit and someone else has a high disk usage application.</p>
<p>Thanks for the link.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL InnoDb inserts are slow, really slow! by chris</title>
		<link>http://blog.cnizz.com/2010/06/12/mysql-innodb-inserts-are-slow-really-slow/comment-page-1/#comment-72408</link>
		<dc:creator>chris</dc:creator>
		<pubDate>Wed, 18 Aug 2010 17:26:07 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cnizz.com/?p=445#comment-72408</guid>
		<description>Nick, thanks for the response.  Unfortunately I haven&#039;t looked into &quot;fixing&quot; this issue.  It is known that MyISAM is faster than InnoDb, but this is the trade-off you agree to when you want to gain referential integrity and normalized data at the database layer.  If this is a high availability production server I would look into some books on the subject.  You can also check out some of the posts over at &lt;a href=&quot;http://www.mysqlperformanceblog.com/&quot; rel=&quot;nofollow&quot;&gt;http://www.mysqlperformanceblog.com/&lt;/a&gt;.  The folks over there have lots of great stuff.</description>
		<content:encoded><![CDATA[<p>Nick, thanks for the response.  Unfortunately I haven&#8217;t looked into &#8220;fixing&#8221; this issue.  It is known that MyISAM is faster than InnoDb, but this is the trade-off you agree to when you want to gain referential integrity and normalized data at the database layer.  If this is a high availability production server I would look into some books on the subject.  You can also check out some of the posts over at <a href="http://www.mysqlperformanceblog.com/" rel="nofollow">http://www.mysqlperformanceblog.com/</a>.  The folks over there have lots of great stuff.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on MySQL InnoDb inserts are slow, really slow! by Nick</title>
		<link>http://blog.cnizz.com/2010/06/12/mysql-innodb-inserts-are-slow-really-slow/comment-page-1/#comment-72406</link>
		<dc:creator>Nick</dc:creator>
		<pubDate>Wed, 18 Aug 2010 17:20:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cnizz.com/?p=445#comment-72406</guid>
		<description>I am experiencing the same symptoms,   
I have no indexes or foreign keys   one table, one column.   if i use InnoBb 1000 inserts takes around 10-20 seconds  MyIsam  &lt; 1 second
server is 4 core @ 2.0Ghz with 2818176KB free


any suggestions how to fix this?</description>
		<content:encoded><![CDATA[<p>I am experiencing the same symptoms,<br />
I have no indexes or foreign keys   one table, one column.   if i use InnoBb 1000 inserts takes around 10-20 seconds  MyIsam  &lt; 1 second<br />
server is 4 core @ 2.0Ghz with 2818176KB free</p>
<p>any suggestions how to fix this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Holiday Weekend: Why not redesign my site! by Beer Pong</title>
		<link>http://blog.cnizz.com/2010/05/30/holiday-weekend-why-not-redesign-my-site/comment-page-1/#comment-72307</link>
		<dc:creator>Beer Pong</dc:creator>
		<pubDate>Mon, 16 Aug 2010 17:34:01 +0000</pubDate>
		<guid isPermaLink="false">http://blog.cnizz.com/?p=325#comment-72307</guid>
		<description>Sick! I always be playing beer pong. It is going to be the most fun thing I do with my amigos every saturday!</description>
		<content:encoded><![CDATA[<p>Sick! I always be playing beer pong. It is going to be the most fun thing I do with my amigos every saturday!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
