<?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>Infomoon</title>
	<atom:link href="http://www.infomoon.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.infomoon.com</link>
	<description>Technology Information</description>
	<lastBuildDate>Mon, 05 Dec 2011 13:43:14 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
		<item>
		<title>Difference Between Sessions and Cookies</title>
		<link>http://www.infomoon.com/difference-between-sessions-and-cookies/</link>
		<comments>http://www.infomoon.com/difference-between-sessions-and-cookies/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 13:35:45 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.infomoon.com/?p=12</guid>
		<description><![CDATA[Both are used to store user specific information that is used to personalize or customize the visitor experience to a website. This includes storing such info as username, password, real name of the user, and preferences. The main difference is &#8230; <a href="http://www.infomoon.com/difference-between-sessions-and-cookies/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Both are used to store user specific information that is used to personalize or customize the visitor experience to a website. This includes storing such info as username, password, real name of the user, and preferences.<span id="more-12"></span></p>
<p>The main difference is that cookies are stored in the user&#8217;s browser and sessions are stored on the server. Usually both are removed or deleted shortly after the user finishes with the visit to a website. However, cookies can be cleared by the user through the browser interface or the user can limit or deny storing cookies on her or his computer. Sessions, on the other hand, are not controlled by the user through the browser. Although as soon as the browser is closed, so is the session whereas a cookie can remain saved even if the browser is closed and later re-opened.</p>
<p>So even though a user has more control over cookies (whether they exercise that control is another matter), a session tends to be more short term.</p>
<p>If you require more long term solution for storing user specific data, such as preferences for a site, then you need to consider storing that info in database and then retrieving it and storing the data in a cookie or session as needed.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infomoon.com/difference-between-sessions-and-cookies/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Pear Packages</title>
		<link>http://www.infomoon.com/installing-pear-packages/</link>
		<comments>http://www.infomoon.com/installing-pear-packages/#comments</comments>
		<pubDate>Mon, 05 Dec 2011 01:28:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[PHP]]></category>
		<category><![CDATA[Programming]]></category>

		<guid isPermaLink="false">http://www.infomoon.com/?p=10</guid>
		<description><![CDATA[Pear is a very versatile and hugely useful library of functions for the PHP programming language. Pear is installed by default as of PHP version 4.3.0. To install a new Pear library, you need to open shell and log in &#8230; <a href="http://www.infomoon.com/installing-pear-packages/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p><a title="What is PEAR" href="http://pear.php.net/" target="_blank">Pear</a> is a very versatile and hugely useful library of functions for the PHP programming language.</p>
<p>Pear is installed by default as of PHP version 4.3.0.</p>
<p>To install a new Pear library, you need to open shell and log in as the root user. Then type &#8216;pear install xxxxxx&#8217; (where xxxxxx is the name of the library)</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infomoon.com/installing-pear-packages/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Limiting Connections to MySQL</title>
		<link>http://www.infomoon.com/limiting-connections-to-mysql/</link>
		<comments>http://www.infomoon.com/limiting-connections-to-mysql/#comments</comments>
		<pubDate>Sat, 03 Dec 2011 15:47:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[LAMP]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://www.infomoon.com/?p=1</guid>
		<description><![CDATA[Ever had the server become inactive because of too many connections at the same time? The solution is to limit the number of connections to MySQL database. The file you should make these adjustments to is the /etc/my.cnf you can &#8230; <a href="http://www.infomoon.com/limiting-connections-to-mysql/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<p>Ever had the server become inactive because of too many connections at the same time? The solution is to limit the number of connections to MySQL database.</p>
<p>The file you should make these adjustments to is the /etc/my.cnf you can change the following line and set a limit.</p>
<p>set-variable = max_connections=150<br />
set-variable = max_user_connections=1</p>
<p>This will cap off connections at 150 total, and prevent any one MySQL user ID from opening more than 1 connections.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.infomoon.com/limiting-connections-to-mysql/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

