<?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 Another blog</title>
	<atom:link href="http://flakron.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://flakron.net</link>
	<description></description>
	<lastBuildDate>Wed, 19 Oct 2011 12:02:15 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>Comment on About by Flakron Bytyqi</title>
		<link>http://flakron.net/about/comment-page-1/#comment-113</link>
		<dc:creator>Flakron Bytyqi</dc:creator>
		<pubDate>Wed, 19 Oct 2011 12:02:15 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?page_id=2#comment-113</guid>
		<description>I used 

&lt;code&gt;ALTER TABLE table1 PARTITION BY KEY myINT11timestamp PARTITIONS 1000;&lt;/code&gt;

Cheers</description>
		<content:encoded><![CDATA[<p>I used </p>
<p><code>ALTER TABLE table1 PARTITION BY KEY myINT11timestamp PARTITIONS 1000;</code></p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Jonathan</title>
		<link>http://flakron.net/about/comment-page-1/#comment-112</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Wed, 19 Oct 2011 11:53:35 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?page_id=2#comment-112</guid>
		<description>That&#039;s pretty good. 

Which partition method did you use? One of the method described below or something else?

From stackoverflow:
&lt;code&gt;ALTER TABLE table1 PARTITION BY KEY myINT11timestamp PARTITIONS 1000;&lt;/code&gt;
-- or
&lt;code&gt;ALTER TABLE table1 PARTITION BY HASH (myINT11timestamp/1000) PARTITIONS 10;&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>That&#8217;s pretty good. </p>
<p>Which partition method did you use? One of the method described below or something else?</p>
<p>From stackoverflow:<br />
<code>ALTER TABLE table1 PARTITION BY KEY myINT11timestamp PARTITIONS 1000;</code><br />
&#8211; or<br />
<code>ALTER TABLE table1 PARTITION BY HASH (myINT11timestamp/1000) PARTITIONS 10;</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Flakron Bytyqi</title>
		<link>http://flakron.net/about/comment-page-1/#comment-111</link>
		<dc:creator>Flakron Bytyqi</dc:creator>
		<pubDate>Wed, 19 Oct 2011 10:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?page_id=2#comment-111</guid>
		<description>@Jonathan

Well, the table to be partitioned was around 70 GB of data, and on test I did the change took around 4 and a half days. In the test I got performance improvement as if I were querying 2000000 records and not 400 000 000.

Cheers</description>
		<content:encoded><![CDATA[<p>@Jonathan</p>
<p>Well, the table to be partitioned was around 70 GB of data, and on test I did the change took around 4 and a half days. In the test I got performance improvement as if I were querying 2000000 records and not 400 000 000.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Jonathan</title>
		<link>http://flakron.net/about/comment-page-1/#comment-110</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Tue, 18 Oct 2011 19:49:25 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?page_id=2#comment-110</guid>
		<description>Hi, 

Was wondering how you ended up using partitions with unix timestamp based on your question on stackoverlow (http://stackoverflow.com/questions/7552700/mysql-partitioning-and-unix-timestamp)? 

Thanks,
Jonathan</description>
		<content:encoded><![CDATA[<p>Hi, </p>
<p>Was wondering how you ended up using partitions with unix timestamp based on your question on stackoverlow (<a href="http://stackoverflow.com/questions/7552700/mysql-partitioning-and-unix-timestamp" rel="nofollow">http://stackoverflow.com/questions/7552700/mysql-partitioning-and-unix-timestamp</a>)? </p>
<p>Thanks,<br />
Jonathan</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Document templates with odtPHP and CodeIgniter 1.7.2 by marco</title>
		<link>http://flakron.net/2010/08/27/document-templates-with-odtphp-and-codeigniter-1-7-2/comment-page-1/#comment-95</link>
		<dc:creator>marco</dc:creator>
		<pubDate>Tue, 23 Nov 2010 20:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?p=134#comment-95</guid>
		<description>Interesting article, even if I am experiencing problems with cakephp &amp; odtPHP.
Anyway, change the library is not a good idea, instead you can create a new odf object passing, as second arg, the configuration needed, this way
&lt;pre&gt;
&lt;code&gt;$pclconfig= array(
    	&#039;ZIP_PROXY&#039; =&gt; &#039;PclZipProxy&#039;,
    	&#039;DELIMITER_LEFT&#039; =&gt; &#039;{&#039;,
    	&#039;DELIMITER_RIGHT&#039; =&gt; &#039;}&#039;,
		&#039;PATH_TO_TMP&#039; =&gt; &#039;/var/www/html/myveryowndir/tmp&#039;
   	);
$odf = &amp; new odf(&quot;template.odf&quot;, $pclconfig);
&lt;/code&gt;
&lt;/pre&gt;

bye
m</description>
		<content:encoded><![CDATA[<p>Interesting article, even if I am experiencing problems with cakephp &amp; odtPHP.<br />
Anyway, change the library is not a good idea, instead you can create a new odf object passing, as second arg, the configuration needed, this way</p>
<pre>
<code>$pclconfig= array(
    	'ZIP_PROXY' =&gt; 'PclZipProxy',
    	'DELIMITER_LEFT' =&gt; '{',
    	'DELIMITER_RIGHT' =&gt; '}',
		'PATH_TO_TMP' =&gt; '/var/www/html/myveryowndir/tmp'
   	);
$odf = &amp; new odf("template.odf", $pclconfig);
</code>
</pre>
<p>bye<br />
m</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP 4&amp;5 constructor by Flakron Bytyqi</title>
		<link>http://flakron.net/2010/03/30/php-45-constructor/comment-page-1/#comment-92</link>
		<dc:creator>Flakron Bytyqi</dc:creator>
		<pubDate>Sun, 09 May 2010 22:13:28 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?p=61#comment-92</guid>
		<description>Well php5 is dominating in my projects, but some clients (usually corporates) tend to stick to older versions of php.</description>
		<content:encoded><![CDATA[<p>Well php5 is dominating in my projects, but some clients (usually corporates) tend to stick to older versions of php.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PHP 4&amp;5 constructor by Brian Temecula</title>
		<link>http://flakron.net/2010/03/30/php-45-constructor/comment-page-1/#comment-91</link>
		<dc:creator>Brian Temecula</dc:creator>
		<pubDate>Wed, 05 May 2010 19:22:59 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?p=61#comment-91</guid>
		<description>I think it would be interesting to see how many people are running php4. php5 has so many benefits, it just seems lame to use php4.</description>
		<content:encoded><![CDATA[<p>I think it would be interesting to see how many people are running php4. php5 has so many benefits, it just seems lame to use php4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Printing in HTML by Flakerim</title>
		<link>http://flakron.net/2009/07/15/printing-in-html/comment-page-1/#comment-11</link>
		<dc:creator>Flakerim</dc:creator>
		<pubDate>Fri, 07 Aug 2009 09:32:48 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?p=3#comment-11</guid>
		<description>I think is better when you have large css file :D.

</description>
		<content:encoded><![CDATA[<p>I think is better when you have large css file <img src='http://flakron.net/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> .</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Printing in HTML by Mnaira</title>
		<link>http://flakron.net/2009/07/15/printing-in-html/comment-page-1/#comment-4</link>
		<dc:creator>Mnaira</dc:creator>
		<pubDate>Fri, 17 Jul 2009 06:53:43 +0000</pubDate>
		<guid isPermaLink="false">http://flakron.net/?p=3#comment-4</guid>
		<description>Thanks.</description>
		<content:encoded><![CDATA[<p>Thanks.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

