<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>spiros.blog() &#187; mysql</title>
	<atom:link href="http://www.tzavellas.com/techblog/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.tzavellas.com/techblog</link>
	<description>Spiros Tzavellas’s blog, mostly on software development and Java.</description>
	<lastBuildDate>Fri, 24 Sep 2010 07:42:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>PHP and persistent MySQL connections</title>
		<link>http://www.tzavellas.com/techblog/2006/11/14/php-and-persistent-mysql-connections/</link>
		<comments>http://www.tzavellas.com/techblog/2006/11/14/php-and-persistent-mysql-connections/#comments</comments>
		<pubDate>Tue, 14 Nov 2006 19:59:28 +0000</pubDate>
		<dc:creator>spiros</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[php]]></category>

		<guid isPermaLink="false">http://www.tzavellas.com/techblog/?p=60</guid>
		<description><![CDATA[At the MySQL Performance Blog there is a very interesting article about PHP&#8216;s persistent MySQL connections (connection pooling) and why they are not enabled by default in the mysqli extension.]]></description>
			<content:encoded><![CDATA[<p>At the <a href="http://www.mysqlperformanceblog.com/">MySQL Performance Blog</a> there is a very interesting <a href="http://www.mysqlperformanceblog.com/2006/11/12/are-php-persistent-connections-evil/">article</a> about <a href="http://www.php.net">PHP</a>&#8216;s persistent <a href="http://www.mysql.com">MySQL</a> connections (connection pooling) and why they are not enabled by default in the <a href="http://gr.php.net/mysqli">mysqli</a> extension.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tzavellas.com/techblog/2006/11/14/php-and-persistent-mysql-connections/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Distributed Transactions in Java</title>
		<link>http://www.tzavellas.com/techblog/2006/02/21/distributed-transactions-in-java/</link>
		<comments>http://www.tzavellas.com/techblog/2006/02/21/distributed-transactions-in-java/#comments</comments>
		<pubDate>Tue, 21 Feb 2006 14:49:03 +0000</pubDate>
		<dc:creator>spiros</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[distributed]]></category>
		<category><![CDATA[mysql]]></category>
		<category><![CDATA[transactions]]></category>

		<guid isPermaLink="false">http://www.tzavellas.com/techblog/?p=44</guid>
		<description><![CDATA[If you are interested in distributed transactions checkout the talk Demystifying Java Technology Transaction Processing by Jon Maron, Mark Little and Greg Pavlik. The talk was given at JavaOne 2004 and it available online for the Sun Developer Network members (you can be a member with a free registration). Mike Spille has also written a [...]]]></description>
			<content:encoded><![CDATA[<p>If you are interested in distributed transactions checkout the talk <a href="http://developers.sun.com/learning/javaoneonline/2004/coreenterprise/TS-1448.html">Demystifying Java Technology Transaction Processing</a> by Jon Maron, <a href="http://markclittle.blogspot.com/">Mark Little</a> and Greg Pavlik. The talk was given at <a href="http://developers.sun.com/learning/javaoneonline/">JavaOne 2004</a> and it available online for the <a href="http://developers.sun.com/">Sun Developer Network</a> members (you can be a member with a free registration).</p>
<p><a href="http://jroller.com/page/pyrasun/">Mike Spille</a> has also written a <a href="http://jroller.com/page/pyrasun?catname=%2FXA">series</a> of excellent articles on his <a href="http://jroller.com/page/pyrasun/">blog</a> about XA transactions, that provide many details on how distributed transactions work in a J2EE environment. I really like the information on failures and failure recovery and I believe that every J2EE developer should know this stuff.</p>
<p>From the open source database servers, if I am correct, only <a href="http://dev.mysql.com/doc/refman/5.0/en/xa.html">MySQL 5</a> and <a href="http://db.apache.org/derby/">Apache Derby</a> support the XA protocol, so that they can be enlisted in a 2PC transaction, and unfortunately MySQL has some very serious <a href="http://www.jroller.com/page/maximdim?entry=mysql_5_and_support_for">limitations</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tzavellas.com/techblog/2006/02/21/distributed-transactions-in-java/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Federated Storage Engine</title>
		<link>http://www.tzavellas.com/techblog/2006/02/21/mysql-federated-storage-engine/</link>
		<comments>http://www.tzavellas.com/techblog/2006/02/21/mysql-federated-storage-engine/#comments</comments>
		<pubDate>Tue, 21 Feb 2006 14:47:41 +0000</pubDate>
		<dc:creator>spiros</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[distributed]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://www.tzavellas.com/techblog/?p=43</guid>
		<description><![CDATA[The federated storage engine in MySQL is a storage engine that allows you to link multiple database tables, that exists in different instances of the database server, into logical databases. The federated storage engine was added to MySQL at version 5.0 and allows us to do various cool things like synchronous replication (using federated tables [...]]]></description>
			<content:encoded><![CDATA[<p>The federated storage engine in MySQL is a storage engine that allows you to link multiple database tables, that exists in different instances of the database server, into logical databases. The federated storage engine was added to MySQL at version 5.0 and allows us to do various cool things like synchronous replication (using federated tables and triggers) and handle efficiently historical data.</p>
<p>You can read more about the federated storage engine in the <a href="http://dev.mysql.com/tech-resources/articles/mysql-federated-storage.html">Accessing Distributed Data with the Federated Storage Engine</a> article by Robin Schumacher and in the the <a href="http://dev.mysql.com/doc/refman/5.0/en/federated-storage-engine.html">MySQL Reference Documentation</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.tzavellas.com/techblog/2006/02/21/mysql-federated-storage-engine/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

