<?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: Tips on Drizzle Development and Valgrind</title>
	<atom:link href="http://torum.net/2009/12/tips-on-drizzle-and-valgrind/feed/" rel="self" type="application/rss+xml" />
	<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/</link>
	<description>Hackaholic and a Web Addict based in Tokyo</description>
	<lastBuildDate>Tue, 27 Jul 2010 02:42:30 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Toru Maesaka</title>
		<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/comment-page-1/#comment-5421</link>
		<dc:creator>Toru Maesaka</dc:creator>
		<pubDate>Fri, 04 Dec 2009 16:32:10 +0000</pubDate>
		<guid isPermaLink="false">http://torum.net/?p=2312#comment-5421</guid>
		<description>Haha, thanks for giving MyISAM a little thrash. I can&#039;t wait to run this blog on Drizzle + BlitzDB :)

I&#039;ll update the blog post based on what we discussed later on. Too sleepy now...</description>
		<content:encoded><![CDATA[<p>Haha, thanks for giving MyISAM a little thrash. I can&#8217;t wait to run this blog on Drizzle + BlitzDB :)</p>
<p>I&#8217;ll update the blog post based on what we discussed later on. Too sleepy now&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Pipes</title>
		<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/comment-page-1/#comment-5413</link>
		<dc:creator>Jay Pipes</dc:creator>
		<pubDate>Fri, 04 Dec 2009 04:12:43 +0000</pubDate>
		<guid isPermaLink="false">http://torum.net/?p=2312#comment-5413</guid>
		<description>Hmm, probably shouldn&#039;t have posted all that... :) Sorry, toru!</description>
		<content:encoded><![CDATA[<p>Hmm, probably shouldn&#8217;t have posted all that&#8230; :) Sorry, toru!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Pipes</title>
		<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/comment-page-1/#comment-5412</link>
		<dc:creator>Jay Pipes</dc:creator>
		<pubDate>Fri, 04 Dec 2009 04:11:57 +0000</pubDate>
		<guid isPermaLink="false">http://torum.net/?p=2312#comment-5412</guid>
		<description>Hi again, Toru! :)

OK, so I was a little puzzled by your comment.  Check out this output which shows the difference between --valgrind and --valgrind-mysqld.  You&#039;ll notice that the first output shows the valgrind output from drizzletest.cc and the second, I have to cat the  var/log/master.err...

EDIT:
Thanks Jay. As you mentioned, this output is humungous so I took a copy on my laptop. It&#039;s awesome how we were both confused big time!</description>
		<content:encoded><![CDATA[<p>Hi again, Toru! :)</p>
<p>OK, so I was a little puzzled by your comment.  Check out this output which shows the difference between &#8211;valgrind and &#8211;valgrind-mysqld.  You&#8217;ll notice that the first output shows the valgrind output from drizzletest.cc and the second, I have to cat the  var/log/master.err&#8230;</p>
<p>EDIT:<br />
Thanks Jay. As you mentioned, this output is humungous so I took a copy on my laptop. It&#8217;s awesome how we were both confused big time!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Toru Maesaka</title>
		<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/comment-page-1/#comment-5355</link>
		<dc:creator>Toru Maesaka</dc:creator>
		<pubDate>Wed, 02 Dec 2009 18:41:35 +0000</pubDate>
		<guid isPermaLink="false">http://torum.net/?p=2312#comment-5355</guid>
		<description>Jay,

Thanks for correction. Kinda weird, I was getting BlitzDB errors in there but maybe I&#039;ll get more if I use that option. Lemmie try it out now.

EDIT:
I just tried the two options and I got the same output... Who knows, maybe someone in the community had made the option consistent :) 

Thanks!</description>
		<content:encoded><![CDATA[<p>Jay,</p>
<p>Thanks for correction. Kinda weird, I was getting BlitzDB errors in there but maybe I&#8217;ll get more if I use that option. Lemmie try it out now.</p>
<p>EDIT:<br />
I just tried the two options and I got the same output&#8230; Who knows, maybe someone in the community had made the option consistent :) </p>
<p>Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jay Pipes</title>
		<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/comment-page-1/#comment-5354</link>
		<dc:creator>Jay Pipes</dc:creator>
		<pubDate>Wed, 02 Dec 2009 17:48:21 +0000</pubDate>
		<guid isPermaLink="false">http://torum.net/?p=2312#comment-5354</guid>
		<description>@Jobin:

Nope, in C++, garbage collection and deallocation of memory is the responsibility of the programmer.  This makes C++ slightly more powerful than Java/.NET (or rather, unmanaged .NET), but along with that power comes extra responsibility/risk of a memory leak.

@Toru:

Actually, the flag to ./dtr is --valgrind-mysqld, otherwise the valgrind output in master.err will be the valgrind result of drizzltest.cc and not the server :)

Cheers!

Jay</description>
		<content:encoded><![CDATA[<p>@Jobin:</p>
<p>Nope, in C++, garbage collection and deallocation of memory is the responsibility of the programmer.  This makes C++ slightly more powerful than Java/.NET (or rather, unmanaged .NET), but along with that power comes extra responsibility/risk of a memory leak.</p>
<p>@Toru:</p>
<p>Actually, the flag to ./dtr is &#8211;valgrind-mysqld, otherwise the valgrind output in master.err will be the valgrind result of drizzltest.cc and not the server :)</p>
<p>Cheers!</p>
<p>Jay</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jobin Augustine</title>
		<link>http://torum.net/2009/12/tips-on-drizzle-and-valgrind/comment-page-1/#comment-5349</link>
		<dc:creator>Jobin Augustine</dc:creator>
		<pubDate>Wed, 02 Dec 2009 11:03:16 +0000</pubDate>
		<guid isPermaLink="false">http://torum.net/?p=2312#comment-5349</guid>
		<description>Thank your for the post. and  guiding me to valgrind.

a perfect world don&#039;t have any memory leak :)
C/C++ world is not requied to think of the garbage collector in Java and .Net world any more?</description>
		<content:encoded><![CDATA[<p>Thank your for the post. and  guiding me to valgrind.</p>
<p>a perfect world don&#8217;t have any memory leak :)<br />
C/C++ world is not requied to think of the garbage collector in Java and .Net world any more?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
