<?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 Stivlo&#039;st in Asia</title>
	<atom:link href="http://www.stefanolocati.it/blog/?feed=comments-rss2" rel="self" type="application/rss+xml" />
	<link>http://www.stefanolocati.it/blog</link>
	<description>Programming and Travel</description>
	<lastBuildDate>Fri, 18 May 2012 06:26:41 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on A simple Roundcube optimization by stefano</title>
		<link>http://www.stefanolocati.it/blog/?p=236#comment-26778</link>
		<dc:creator>stefano</dc:creator>
		<pubDate>Fri, 18 May 2012 06:26:41 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=236#comment-26778</guid>
		<description>cache_key should be 32 chars, data instead can be a text field, i.e. 64k chars, in my particular data set the max length is 1701, but if you&#039;re over 256 chars, you&#039;ve to use a text field anyway.

I am not sure about the revision, but here are my create tables for session and messages, compare them with your table before applying any change of course. Also time your performances, for instance with firebug, before and after any change.

Cheers

CREATE TABLE `messages` (
  `message_id` int(11) unsigned NOT NULL AUTO_INCREMENT,
  `user_id` int(10) unsigned NOT NULL DEFAULT &#039;0&#039;,
  `del` tinyint(1) NOT NULL DEFAULT &#039;0&#039;,
  `cache_key` char(32) CHARACTER SET ascii NOT NULL,
  `created` datetime NOT NULL DEFAULT &#039;1000-01-01 00:00:00&#039;,
  `idx` int(11) unsigned NOT NULL DEFAULT &#039;0&#039;,
  `uid` int(11) unsigned NOT NULL DEFAULT &#039;0&#039;,
  `subject` varchar(255) NOT NULL,
  `from` varchar(255) NOT NULL,
  `to` varchar(255) NOT NULL,
  `cc` varchar(255) NOT NULL,
  `date` datetime NOT NULL DEFAULT &#039;1000-01-01 00:00:00&#039;,
  `size` int(11) unsigned NOT NULL DEFAULT &#039;0&#039;,
  `headers` text NOT NULL,
  `structure` text,
  PRIMARY KEY (`message_id`),
  UNIQUE KEY `uniqueness` (`user_id`,`cache_key`,`uid`),
  KEY `created_index` (`created`)
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1093947 ;


CREATE TABLE `session` (
  `sess_id` char(36) NOT NULL,
  `created` datetime NOT NULL DEFAULT &#039;1000-01-01 00:00:00&#039;,
  `changed` datetime NOT NULL DEFAULT &#039;1000-01-01 00:00:00&#039;,
  `ip` char(16) NOT NULL,
  `vars` text NOT NULL,
  PRIMARY KEY (`sess_id`),
  KEY `changed_index` (`changed`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;</description>
		<content:encoded><![CDATA[<p>cache_key should be 32 chars, data instead can be a text field, i.e. 64k chars, in my particular data set the max length is 1701, but if you&#8217;re over 256 chars, you&#8217;ve to use a text field anyway.</p>
<p>I am not sure about the revision, but here are my create tables for session and messages, compare them with your table before applying any change of course. Also time your performances, for instance with firebug, before and after any change.</p>
<p>Cheers</p>
<p>CREATE TABLE `messages` (<br />
  `message_id` int(11) unsigned NOT NULL AUTO_INCREMENT,<br />
  `user_id` int(10) unsigned NOT NULL DEFAULT &#8217;0&#8242;,<br />
  `del` tinyint(1) NOT NULL DEFAULT &#8217;0&#8242;,<br />
  `cache_key` char(32) CHARACTER SET ascii NOT NULL,<br />
  `created` datetime NOT NULL DEFAULT &#8217;1000-01-01 00:00:00&#8242;,<br />
  `idx` int(11) unsigned NOT NULL DEFAULT &#8217;0&#8242;,<br />
  `uid` int(11) unsigned NOT NULL DEFAULT &#8217;0&#8242;,<br />
  `subject` varchar(255) NOT NULL,<br />
  `from` varchar(255) NOT NULL,<br />
  `to` varchar(255) NOT NULL,<br />
  `cc` varchar(255) NOT NULL,<br />
  `date` datetime NOT NULL DEFAULT &#8217;1000-01-01 00:00:00&#8242;,<br />
  `size` int(11) unsigned NOT NULL DEFAULT &#8217;0&#8242;,<br />
  `headers` text NOT NULL,<br />
  `structure` text,<br />
  PRIMARY KEY (`message_id`),<br />
  UNIQUE KEY `uniqueness` (`user_id`,`cache_key`,`uid`),<br />
  KEY `created_index` (`created`)<br />
) ENGINE=MyISAM  DEFAULT CHARSET=utf8 AUTO_INCREMENT=1093947 ;</p>
<p>CREATE TABLE `session` (<br />
  `sess_id` char(36) NOT NULL,<br />
  `created` datetime NOT NULL DEFAULT &#8217;1000-01-01 00:00:00&#8242;,<br />
  `changed` datetime NOT NULL DEFAULT &#8217;1000-01-01 00:00:00&#8242;,<br />
  `ip` char(16) NOT NULL,<br />
  `vars` text NOT NULL,<br />
  PRIMARY KEY (`sess_id`),<br />
  KEY `changed_index` (`changed`)<br />
) ENGINE=MyISAM DEFAULT CHARSET=utf8;</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple Roundcube optimization by nic</title>
		<link>http://www.stefanolocati.it/blog/?p=236#comment-26755</link>
		<dc:creator>nic</dc:creator>
		<pubDate>Tue, 15 May 2012 03:27:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=236#comment-26755</guid>
		<description>Hi,

I know this post is a little bit old but I would like to know if it can improve the performance of Roundcube for me on version 0.7.2.

May I ask how can I know the maximum length of cache_key and data in my DB?
and also may I know the column you have changed in the session and messages table?

Thank you.</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I know this post is a little bit old but I would like to know if it can improve the performance of Roundcube for me on version 0.7.2.</p>
<p>May I ask how can I know the maximum length of cache_key and data in my DB?<br />
and also may I know the column you have changed in the session and messages table?</p>
<p>Thank you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Upgrade Zimbra 6 to zimbra 7 on EC2 by raj</title>
		<link>http://www.stefanolocati.it/blog/?p=745#comment-26046</link>
		<dc:creator>raj</dc:creator>
		<pubDate>Fri, 09 Mar 2012 09:21:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=745#comment-26046</guid>
		<description>how to take the settings value from zimbra 5 to zimbra 7</description>
		<content:encoded><![CDATA[<p>how to take the settings value from zimbra 5 to zimbra 7</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple Roundcube optimization by stefano</title>
		<link>http://www.stefanolocati.it/blog/?p=236#comment-23902</link>
		<dc:creator>stefano</dc:creator>
		<pubDate>Sat, 26 Nov 2011 05:16:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=236#comment-23902</guid>
		<description>Hi Andres, yes, after testing, I did it in the live database, with already data in it. Also as you can see from the update at the bottom of the post, I also did the same on the messages table.</description>
		<content:encoded><![CDATA[<p>Hi Andres, yes, after testing, I did it in the live database, with already data in it. Also as you can see from the update at the bottom of the post, I also did the same on the messages table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple Roundcube optimization by Andres</title>
		<link>http://www.stefanolocati.it/blog/?p=236#comment-23773</link>
		<dc:creator>Andres</dc:creator>
		<pubDate>Mon, 21 Nov 2011 14:13:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=236#comment-23773</guid>
		<description>did you try this on database already running? this changes, did you only do on  table cache?
sorry for my bad english
regards

Andres</description>
		<content:encoded><![CDATA[<p>did you try this on database already running? this changes, did you only do on  table cache?<br />
sorry for my bad english<br />
regards</p>
<p>Andres</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My experience with Amazon Simple Email Service (SES) by stefano</title>
		<link>http://www.stefanolocati.it/blog/?p=727#comment-23765</link>
		<dc:creator>stefano</dc:creator>
		<pubDate>Mon, 21 Nov 2011 03:28:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=727#comment-23765</guid>
		<description>Provide more details about your configuration and post your question on http://serverfault.com/ - Good luck.</description>
		<content:encoded><![CDATA[<p>Provide more details about your configuration and post your question on <a href="http://serverfault.com/" rel="nofollow">http://serverfault.com/</a> &#8211; Good luck.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My experience with Amazon Simple Email Service (SES) by adhown</title>
		<link>http://www.stefanolocati.it/blog/?p=727#comment-23648</link>
		<dc:creator>adhown</dc:creator>
		<pubDate>Mon, 14 Nov 2011 11:09:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=727#comment-23648</guid>
		<description>Hello, I want to ask about ses integrated with MTA such as postfix.
I read from aws documentation here http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/index.html?IntegratingWithServer.Postfix.html .. but it doesn&#039;t work cause I don&#039;t know which user can I use..
can you tell me?</description>
		<content:encoded><![CDATA[<p>Hello, I want to ask about ses integrated with MTA such as postfix.<br />
I read from aws documentation here <a href="http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/index.html?IntegratingWithServer.Postfix.html" rel="nofollow">http://docs.amazonwebservices.com/ses/latest/DeveloperGuide/index.html?IntegratingWithServer.Postfix.html</a> .. but it doesn&#8217;t work cause I don&#8217;t know which user can I use..<br />
can you tell me?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on A simple Roundcube optimization by tias</title>
		<link>http://www.stefanolocati.it/blog/?p=236#comment-22352</link>
		<dc:creator>tias</dc:creator>
		<pubDate>Thu, 26 May 2011 19:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=236#comment-22352</guid>
		<description>your analysis rocks big time, man !!!
I have applied your changes successfully and I have to say that my roundcube webmail is blazing fast now !!!

so thank you so much to share these very interesting discoveries.

best regards

tias</description>
		<content:encoded><![CDATA[<p>your analysis rocks big time, man !!!<br />
I have applied your changes successfully and I have to say that my roundcube webmail is blazing fast now !!!</p>
<p>so thank you so much to share these very interesting discoveries.</p>
<p>best regards</p>
<p>tias</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on My experience with Amazon Simple Email Service (SES) by stefano</title>
		<link>http://www.stefanolocati.it/blog/?p=727#comment-22312</link>
		<dc:creator>stefano</dc:creator>
		<pubDate>Sun, 22 May 2011 04:39:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=727#comment-22312</guid>
		<description>I don&#039;t know.. I didn&#039;t try with a landline, just persist, after a few tries it worked.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know.. I didn&#8217;t try with a landline, just persist, after a few tries it worked.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pattaya by thai visa</title>
		<link>http://www.stefanolocati.it/blog/?p=40#comment-22292</link>
		<dc:creator>thai visa</dc:creator>
		<pubDate>Fri, 13 May 2011 19:59:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.stefanolocati.it/blog/?p=40#comment-22292</guid>
		<description>Yes, the many potholes in the roads are a real nightmare for abled and dis-abled people. I can&#039;t recall seeing anhy dis-abled people in pattaya except for 2-3 so maybe they stay mostly at home?</description>
		<content:encoded><![CDATA[<p>Yes, the many potholes in the roads are a real nightmare for abled and dis-abled people. I can&#8217;t recall seeing anhy dis-abled people in pattaya except for 2-3 so maybe they stay mostly at home?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

