<?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>uk-dave.com &#187; mysql</title>
	<atom:link href="http://www.uk-dave.com/tag/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.uk-dave.com</link>
	<description>// todo: insert witty tagline here</description>
	<lastBuildDate>Sun, 31 May 2009 12:03:27 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Tweaking MySQL for low memory usage</title>
		<link>http://www.uk-dave.com/2009/01/tweaking-mysql-for-low-memory-usage/</link>
		<comments>http://www.uk-dave.com/2009/01/tweaking-mysql-for-low-memory-usage/#comments</comments>
		<pubDate>Sat, 03 Jan 2009 17:16:17 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Linux]]></category>
		<category><![CDATA[mysql]]></category>

		<guid isPermaLink="false">http://wp.uk-dave.com/?p=92</guid>
		<description><![CDATA[I&#8217;m running MySQL on a VPS with limited memory and found the following settings gave slightly better performance. Edit /etc/mysql/my.cnf and change the settings as shown below. The old settings I&#8217;ve got are the default ones used by Ubuntu 8.04.






key_buffer		= 16M
max_allowed_packet	= 16M
thread_stack		= 128K
table_cache             [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m running MySQL on a VPS with limited memory and found the following settings gave slightly better performance. Edit <tt>/etc/mysql/my.cnf</tt> and change the settings as shown below. The old settings I&#8217;ve got are the default ones used by Ubuntu 8.04.</p>

<table style="margin: auto;">
<tr>
<td>
<blockquote>
<pre>
key_buffer		= 16M
max_allowed_packet	= 16M
thread_stack		= 128K
table_cache             = 64
</pre>
</blockquote>
</td>
<td>
<blockquote>
<pre>
key_buffer		= 16k
max_allowed_packet	= 1M
thread_stack		= 64k
table_cache             = 4
</pre>
</blockquote>
</td>
</tr>
<tr>
<th>Old Settings</th>
<th>New Settings</th>
</tr>
</table>]]></content:encoded>
			<wfw:commentRss>http://www.uk-dave.com/2009/01/tweaking-mysql-for-low-memory-usage/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
