<?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>Hamid Alipour on Web Development &#38; Programming - Coding Recipes &#187; Server Performance</title>
	<atom:link href="http://codingrecipes.com/category/server-performance/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 20:08:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>PHP Date/Time Handling Made Easy; a beginner&#8217;s guide to PHP time and date handling</title>
		<link>http://codingrecipes.com/php-date-time-handling-made-easy-a-beginners-guide-to-php-time-and-date-handling</link>
		<comments>http://codingrecipes.com/php-date-time-handling-made-easy-a-beginners-guide-to-php-time-and-date-handling#comments</comments>
		<pubDate>Sun, 24 Jan 2010 23:04:20 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server Performance]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=768</guid>
		<description><![CDATA[When I started with PHP, I was a bit confused about this subject so this will hopefully help a beginner a lot. UNIX Timestamp UNIX Timestamp (or Unix time or POSIX time) is the number of seconds since the midnight of January 1, 1970 UTC. You can get the current timestamp with PHP&#8217;s time() function: [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/php-date-time-handling-made-easy-a-beginners-guide-to-php-time-and-date-handling/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How PHPCache saved us from buying another server</title>
		<link>http://codingrecipes.com/how-phpcache-saved-us-from-buying-another-server</link>
		<comments>http://codingrecipes.com/how-phpcache-saved-us-from-buying-another-server#comments</comments>
		<pubDate>Tue, 25 Nov 2008 18:35:30 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[MySQL]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server Performance]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=538</guid>
		<description><![CDATA[I developed a large website for a client and in the past month we were getting a lot of traffic. It was in a way that the server had problems handling the traffic and my client wanted to get another server to load balance the traffic between the two. Pages on this site are generated [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/how-phpcache-saved-us-from-buying-another-server/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finding and fixing bottlenecks-slow parts in your PHP code</title>
		<link>http://codingrecipes.com/finding-and-fixing-bottlenecks-slow-parts-in-your-php-code</link>
		<comments>http://codingrecipes.com/finding-and-fixing-bottlenecks-slow-parts-in-your-php-code#comments</comments>
		<pubDate>Wed, 17 Sep 2008 19:03:39 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server Performance]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=338</guid>
		<description><![CDATA[Sometimes you can see that your script is running slow but if you don&#8217;t have a lot of experience you don&#8217;t know how to find out what&#8217;s the problem and where to start looking for it. You then naturally start looking at your loops and things like that, but from my experience the bottleneck is [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/finding-and-fixing-bottlenecks-slow-parts-in-your-php-code/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>PHPCache; a new version of PHPCache is available</title>
		<link>http://codingrecipes.com/phpcache-a-new-version-of-phpcache-is-available</link>
		<comments>http://codingrecipes.com/phpcache-a-new-version-of-phpcache-is-available#comments</comments>
		<pubDate>Tue, 16 Sep 2008 06:33:07 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Projects]]></category>
		<category><![CDATA[Server Performance]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=331</guid>
		<description><![CDATA[A new version of PHPCache is available. This one has 5 new methods: PHPCache::set_expire($key) Which will set the expiration of the cache record for $key in the past, I think this method has some advantages over deleting the key all together. PHPCache::remove($key) Will completely remove the row. PHPCache::clean_up() This method will be called when ever [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/phpcache-a-new-version-of-phpcache-is-available/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHPCache, a simple, powerful object caching solution for PHP applications&#8230;</title>
		<link>http://codingrecipes.com/phpcache-a-simple-powerful-object-caching-solution-for-php-applications</link>
		<comments>http://codingrecipes.com/phpcache-a-simple-powerful-object-caching-solution-for-php-applications#comments</comments>
		<pubDate>Sun, 07 Sep 2008 17:01:45 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Server Performance]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=295</guid>
		<description><![CDATA[https://github.com/Codingrecipes/PHPCache If you have a dynamic website, written in PHP and your site is slow then this solution might help you. Some times you have to have some nasty query then process the result afterwards which makes the whole thing even nastier and slow. With PHPCache, you will be able to cache the result of [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/phpcache-a-simple-powerful-object-caching-solution-for-php-applications/feed</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>highscalability.com and some funny comments they make</title>
		<link>http://codingrecipes.com/highscalabilitycom-and-some-funny-comments-they-make</link>
		<comments>http://codingrecipes.com/highscalabilitycom-and-some-funny-comments-they-make#comments</comments>
		<pubDate>Thu, 04 Sep 2008 21:46:38 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Annoying Stuff]]></category>
		<category><![CDATA[Server Performance]]></category>
		<category><![CDATA[Web Development]]></category>

		<guid isPermaLink="false">http://blog.code-head.com/?p=286</guid>
		<description><![CDATA[1- One of them which is posted on: (Until now at least 9/4/2008) http://highscalability.com/digg-architecture In the &#8220;Lessons Learned&#8221; section says: Tune MySQL through your database engine selection. Use InnoDB when you need transactions and MyISAM when you don&#8217;t. For example, transactional tables on the master can use MyISAM for read-only slaves. InnoDB tables are mostly [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/highscalabilitycom-and-some-funny-comments-they-make/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

