<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
    xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
    xmlns:admin="http://webns.net/mvcb/"
    xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
    xmlns:content="http://purl.org/rss/1.0/modules/content/">
	<channel>
		<title>ThinkPart</title>
	    <link>http://hristov.com/oblog/</link>
	    <description>Andrey's blog</description>
	    <pubDate>Thu, 18 Mar 2010 22:07:45 +0200</pubDate>
	    <language><div style="border:1px solid #990000;padding-left:20px;margin:0 0 10px 0;">

<h4>A PHP Error was encountered</h4>

<p>Severity: Notice</p>
<p>Message:  Undefined index:  language</p>
<p>Filename: feed/rss_posts.php</p>
<p>Line Number: 14</p>

</div></language>
	    <docs>http://blogs.law.harvard.edu/tech/rss</docs>
	
	    <dc:rights>Copyright 2010</dc:rights>
	    
	    		    		    <item>
				<title>My NAS &#45; QNAP TS 119 Turbo NAS</title>
				<link>http://hristov.com/oblog/blog/post/2010/03/07/my-nas-qnap-ts-119-turbo-nas/</link>
				<guid>http://hristov.com/oblog/blog/post/2010/03/07/my-nas-qnap-ts-119-turbo-nas/</guid>
				<description><![CDATA[
				<p>Few weeks ago I got new hardware for my home network, a QNAP TS 119 Turbo NAS.</p>		      	]]>
		      	</description>
				<pubDate>Sun, 07 Mar 2010 00:00:00 +0200</pubDate>
		     </item>
		    		    <item>
				<title>mysqlnd and the compressed protocol, again</title>
				<link>http://hristov.com/oblog/blog/post/2009/09/07/mysqlnd-and-the-compressed-protocol-again/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/09/07/mysqlnd-and-the-compressed-protocol-again/</guid>
				<description><![CDATA[
				<p class="UIIntentionalStory_Message">mysqlnd patched for compressed protocol passes almost all tests, but all of the most relevant and those who test with big result sets. I have a few failures due to "Packet out of order" which is due to the crippled packet numbering when com<span class="text_exposed_hide">...</span><span class="text_exposed_show">pressed is turned on-the outter layer has different counter than the inner, compressed one, and it is unknown how the server resets them (for example in the COM_CHANGE_USER tests).</span></p>
<p>&nbsp;</p>		      	]]>
		      	</description>
				<pubDate>Mon, 07 Sep 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>The MySQL compressed protocol</title>
				<link>http://hristov.com/oblog/blog/post/2009/09/04/the-mysql-compressed-protocol/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/09/04/the-mysql-compressed-protocol/</guid>
				<description><![CDATA[
				<p>MySQL's compressed protocol is not so widely used, but there are still users that use it. Thus, the need to implement it in mysqlnd.</p>
<p>Unfortunately the compressed protocol is full of landmines, a lot of them, exploding one by one.</p>		      	]]>
		      	</description>
				<pubDate>Fri, 04 Sep 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>Compressed protocol for mysqlnd</title>
				<link>http://hristov.com/oblog/blog/post/2009/09/03/compressed-protocol-for-mysqlnd/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/09/03/compressed-protocol-for-mysqlnd/</guid>
				<description><![CDATA[
				<p class="UIIntentionalStory_Message">Compressed protocol support for mysqlnd has ready alpha patch. Tested with simple queries, not tested against the test suite or big packets.</p>		      	]]>
		      	</description>
				<pubDate>Thu, 03 Sep 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>100 000 queries per second against MySQL</title>
				<link>http://hristov.com/oblog/blog/post/2009/06/05/100-000-queries-per-second-against-mysql/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/06/05/100-000-queries-per-second-against-mysql/</guid>
				<description><![CDATA[
				<p>No! There is no error in the topic. You can see yourself:</p>		      	]]>
		      	</description>
				<pubDate>Fri, 05 Jun 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>Where is the problem in the following code?</title>
				<link>http://hristov.com/oblog/blog/post/2009/05/29/where-is-the-problem-in-the-following-code/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/05/29/where-is-the-problem-in-the-following-code/</guid>
				<description><![CDATA[
				<pre>#define MYSQLND_INC_GLOBAL_STATISTIC(statistic) \
 { \
     if (MYSQLND_G(collect_statistics) &amp;&amp; statistic != STAT_LAST) { \
        mysqlnd_global_stats-&gt;values[statistic]++; \
    } \
 }</pre>
<p>I usually don't make this mistake, but in this particular case I did. Can you spot it?</p>		      	]]>
		      	</description>
				<pubDate>Fri, 29 May 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>Query caching in PHP/mysqlnd &#45; Reloaded</title>
				<link>http://hristov.com/oblog/blog/post/2009/04/26/query-caching-in-phpmysqlnd-reloaded/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/04/26/query-caching-in-phpmysqlnd-reloaded/</guid>
				<description><![CDATA[
				<p>The MySQL UC 2009 is over and I got bored in the evening before I had to leave Santa Clara and decided to play again with query caching in mysqlnd. I have always said that mysqlnd is ready for it, the infrastructure is there and that we need just few changes to make it work. Well, I decided to bite the bullet and do it. Spent about 4h in the evening and on the next day 2h while waiting on the San Jose (SJC) airport and continued on the flight to Denver, where I am having vacation. On the plane I was almost ready and today I made the final changes to the preliminary patch, that seems to work :)</p>
<p>I did a small benchmark, a microbenchmark.</p>		      	]]>
		      	</description>
				<pubDate>Sun, 26 Apr 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>mysqlnd talk this afternoon</title>
				<link>http://hristov.com/oblog/blog/post/2009/04/22/mysqlnd-talk-this-afternoon/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/04/22/mysqlnd-talk-this-afternoon/</guid>
				<description><![CDATA[
				<p>In a few hours I will give my talk on mysqlnd. Well, the talk is not mine but we wrote it together with Ulf Wendel, of the MySQL Connectors Team fame. Although we haven't added much functionality to mysqlnd in the recent months mysqlnd is still pretty advanced and started to mature. I will talk about why mysqlnd is unique, why is it cool, why is it <strong>fast</strong>, and why you should use it!</p>		      	]]>
		      	</description>
				<pubDate>Wed, 22 Apr 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>Connector/C++ talk already in the history</title>
				<link>http://hristov.com/oblog/blog/post/2009/04/22/connectorc-talk-already-in-the-history/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/04/22/connectorc-talk-already-in-the-history/</guid>
				<description><![CDATA[
				<p>Yesterday I gave my talk, in front of not that many people, about Connector/C++ at the MySQL UC 2009. Not too many questions came from the public, but this is a new product which very specific target group. You know, almost nobody writes Web applications in C++. And Java is the server language for the Enterprise. So I should have expected not many people in the room.</p>
<p>If you have missed the talk, don't worry. In May there will be a webinar which you can attend and if you miss it, you can just watch it at later time. The webinars are recorded and offered freely.</p>
<p>Yesterday the Connector/C++ got the GA stamp and we officially support it. Although we are going to make changes, mostly backward compatible, because this GA, 1.0.5, added the basic functionality the people need to use MySQL with C++ without using the weird libmysql API, which makes your life hard, if you don't use boost and start to get exceptions - you are gonna leak big time.</p>		      	]]>
		      	</description>
				<pubDate>Wed, 22 Apr 2009 00:00:00 +0300</pubDate>
		     </item>
		    		    <item>
				<title>Connector/C++ @ MySQL UC 2009</title>
				<link>http://hristov.com/oblog/blog/post/2009/04/15/connectorc-mysql-uc-2009/</link>
				<guid>http://hristov.com/oblog/blog/post/2009/04/15/connectorc-mysql-uc-2009/</guid>
				<description><![CDATA[
				<p>I will give a talk about Connector/C++ (and mysqlnd in another slot) next week at the MySQL UC 2009. We had to fit the presentation in about 20 slides to be able to fit in the small timeframe of 45 mins. So far I have given only presentations of about 90 minutes, incl. the shoot me with your questions part. I rehearsed today, both talks. Everything seems fine and I will fit. So, if you are an ISV that uses MySQL and use C++ come to see my presentation, there is something to learn. If you are open source developer, who uses C++, come to the room and allow me to introduce MySQL Connector/C++ to you. I am sure you will never get back to libmysql and MySQL Connector/C&nbsp;<img title="Wink" src="http://hristov.com/oblog/application/views/admin/static/javascript/tiny_mce/plugins/emotions/img/smiley-wink.gif" border="0" alt="Wink" /></p>		      	]]>
		      	</description>
				<pubDate>Wed, 15 Apr 2009 00:00:00 +0300</pubDate>
		     </item>
		    	       
	</channel>
</rss> 