<?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>memcache-hostingmemcache-hosting - Memcache in the cloud - Memcache, memcache mysql, memcache installation, memcache windows, install memcache, memcache extension, joomla memcache</title>
	<atom:link href="http://www.memcache-hosting.com/feed" rel="self" type="application/rss+xml" />
	<link>http://www.memcache-hosting.com</link>
	<description>Memcache in the cloud</description>
	<lastBuildDate></lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
		<item>
		<title>New Book on Installing Memcache</title>
		<link>http://www.memcache-hosting.com/28525151/new_book_on_installing_memcache.php</link>
		<comments>http://www.memcache-hosting.com/28525151/new_book_on_installing_memcache.php#comments</comments>
		<pubDate></pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Memcache]]></category>

		<guid isPermaLink="false">http://www.memcache-hosting.com/28525151/new_book_on_installing_memcache.php</guid>
		<description><![CDATA[<div ><img alt="New Book on Installing Memcache" src="http://www.memcache-hosting.com/wp-content/uploads/4344293770.jpg" border="0" /><br />© <span class="flinkh" onclick="javascript:void window.open('http://www.flickr.com/photos/fryandtricky/4344293770/')">fry_theonly</span></div>
<p>A new book called Amazon SimpleDB Developer Guide is a complete guide to using Amazon&#39;s SimpleDB database API. This book has a whole chapter on installing memcache to cache your query results locally. CacheLite for PHP is also covered, but the Java section is the weak spot in the otherwise excellent guide. </p>
<p>For <a target="_blank" href="http://books.slashdot.org/story/11/04/27/1218207/Book-Review-Amazon-SimpleDB-Developer-Guide?utm_source=rss1.0&#38;utm_medium=feed">example</a>, when tested on a real machine the Java test code showed that the memcached server was running properly, but the Java code for using the cache didn&#39;t work. It ran, but continued to query SimpleDB direct. The Python code, however, worked perfectly. However, if you are using memcached in Windows you&#39;ll need to use port 11211 instead of what&#39;s shown in the book. The section on updating SimpleDB in Python by making serial consecutive calls to SimpleDB is completely missing the code for the script, but the book does go on to cover inserting multiple items concurrently into SimpleDB using a threadpool in Java.</p>
]]></description>
			<content:encoded><![CDATA[<div ><img alt="New Book on Installing Memcache" src="http://www.memcache-hosting.com/wp-content/uploads/4344293770.jpg" border="0" /><br />© <span class="flinkh" onclick="javascript:void window.open('http://www.flickr.com/photos/fryandtricky/4344293770/')">fry_theonly</span></div>
<p>A new book called Amazon SimpleDB Developer Guide is a complete guide to using Amazon&#39;s SimpleDB database API. This book has a whole chapter on installing memcache to cache your query results locally. CacheLite for PHP is also covered, but the Java section is the weak spot in the otherwise excellent guide. </p>
<p>For <a target="_blank" href="http://books.slashdot.org/story/11/04/27/1218207/Book-Review-Amazon-SimpleDB-Developer-Guide?utm_source=rss1.0&amp;utm_medium=feed">example</a>, when tested on a real machine the Java test code showed that the memcached server was running properly, but the Java code for using the cache didn&#39;t work. It ran, but continued to query SimpleDB direct. The Python code, however, worked perfectly. However, if you are using memcached in Windows you&#39;ll need to use port 11211 instead of what&#39;s shown in the book. The section on updating SimpleDB in Python by making serial consecutive calls to SimpleDB is completely missing the code for the script, but the book does go on to cover inserting multiple items concurrently into SimpleDB using a threadpool in Java.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memcache-hosting.com/28525151/new_book_on_installing_memcache.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Installing Memcache on Ubuntu 10.04</title>
		<link>http://www.memcache-hosting.com/28525151/installing_memcache_on_ubuntu_1004.php</link>
		<comments>http://www.memcache-hosting.com/28525151/installing_memcache_on_ubuntu_1004.php#comments</comments>
		<pubDate></pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Memcache]]></category>

		<guid isPermaLink="false">http://www.memcache-hosting.com/28525151/installing_memcache_on_ubuntu_1004.php</guid>
		<description><![CDATA[<div ><img alt="Installing Memcache on Ubuntu 10.04" src="http://www.memcache-hosting.com/wp-content/uploads/2581373471.jpg" border="0" /><br />© <span class="flinkh" onclick="javascript:void window.open('http://www.flickr.com/photos/computermonger/2581373471/')">ComputerMonger</span></div>
<p>Sometimes you must use a mixture of Linux guides in order to get memcache working for you. If you need memchache to use Puelia, which is a PHP implementation of the Linked Data API, then you will need to know the commands for installing memcache on Ubuntu 10.04. </p>
<p>These are the commands you must <a target="_blank" href="http://danpaulsmith.com/2011/03/installing-memcache-on-ubuntu-10-04/">enter</a>: sudo apt-get install memcached, sudo apt-get install php-pear, sudo apt-get install php5-dev, sudo apt-get install libmemcached-dev, sudo pecl install Memcache, sudo echo &#34;extension=memcache.so&#34;&#62; /etc/php5/apache2/conf.d/memcache.ini. Find your php.ini file, which is likely in /etc/php5/apache2/php.ini, and add this line to the bottom of the file: memcache.hash_strategy=&#34;consistent&#34;. Then try : memcached -d -m 1024 -1 127.0.0.1 -p 11211. If you get a message &#34;can&#39;t run as root without -u switch&#34; then try: memcached -d -u www-data -m 1024 -1 127.0.0.1 -p 11211, then: service apache2 restart. </p>
]]></description>
			<content:encoded><![CDATA[<div ><img alt="Installing Memcache on Ubuntu 10.04" src="http://www.memcache-hosting.com/wp-content/uploads/2581373471.jpg" border="0" /><br />© <span class="flinkh" onclick="javascript:void window.open('http://www.flickr.com/photos/computermonger/2581373471/')">ComputerMonger</span></div>
<p>Sometimes you must use a mixture of Linux guides in order to get memcache working for you. If you need memchache to use Puelia, which is a PHP implementation of the Linked Data API, then you will need to know the commands for installing memcache on Ubuntu 10.04. </p>
<p>These are the commands you must <a target="_blank" href="http://danpaulsmith.com/2011/03/installing-memcache-on-ubuntu-10-04/">enter</a>: sudo apt-get install memcached, sudo apt-get install php-pear, sudo apt-get install php5-dev, sudo apt-get install libmemcached-dev, sudo pecl install Memcache, sudo echo &quot;extension=memcache.so&quot;&gt; /etc/php5/apache2/conf.d/memcache.ini. Find your php.ini file, which is likely in /etc/php5/apache2/php.ini, and add this line to the bottom of the file: memcache.hash_strategy=&quot;consistent&quot;. Then try : memcached -d -m 1024 -1 127.0.0.1 -p 11211. If you get a message &quot;can&#39;t run as root without -u switch&quot; then try: memcached -d -u www-data -m 1024 -1 127.0.0.1 -p 11211, then: service apache2 restart. </p>
]]></content:encoded>
			<wfw:commentRss>http://www.memcache-hosting.com/28525151/installing_memcache_on_ubuntu_1004.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Saint-Gobain Solar Displays Easy Installation Crystalline Silicon PV Modules Made With Light Switch frontsheet at Munich Exhibition</title>
		<link>http://www.memcache-hosting.com/28525151/saintgobain_solar_displays_easy_installation_crystalline_silicon_pv_modules_made_with_light_switch_frontsheet_at_munich_exhibition.php</link>
		<comments>http://www.memcache-hosting.com/28525151/saintgobain_solar_displays_easy_installation_crystalline_silicon_pv_modules_made_with_light_switch_frontsheet_at_munich_exhibition.php#comments</comments>
		<pubDate></pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://www.memcache-hosting.com/28525151/saintgobain_solar_displays_easy_installation_crystalline_silicon_pv_modules_made_with_light_switch_frontsheet_at_munich_exhibition.php</guid>
		<description><![CDATA[<p><a target="_blank" href="http://www.globalsolartechnology.com/solar/index.php?option=com_content&#38;view=article&#38;id=7720:-"></a> </p>
<div ><img alt="Saint-Gobain Solar Displays Easy Installation Crystalline Silicon PV Modules Made With Light Switch frontsheet at Munich Exhibition" src="http://www.memcache-hosting.com/wp-content/uploads/5827067321.jpg" border="0" /><br />© <span class="flinkh" onclick="javascript:void window.open('http://www.flickr.com/photos/sga_se/5827067321/')">saint-gobain abrasives, sweden</span></div>
<p>
Saint-Gobain Solar, the leading manufacturer of sustainable materials and engineered renewable energy solutions, is displaying its easy installation crystalline silicon (c-Si) modules made with LightSwitch® frontsheets at Intersolar Europe, being held in Munich. <br />
LightSwitch fluoropolymer film, which is inherently lightweight, and convenient for module installation, incorporated with the high efficiency of c-Si solar cells provide a unique combination of enhanced performance, increased durability, and manufacturing efficiency, bringing solid benefits to both module installation and manufacturers, and also the end-users. </p>
<p>Conventional c-Si modules typically include a heavy glass front design which requires extra care in handling and module installation costs increase manifold. LightSwitch Frontsheet, which is Ideal for lightweight solar module installation, is a melt processable fluoropolymer providing superior weatherability and UV resistance. These highly transparent films are tough and reliable, and provide frontsheets weighing as low as 0.1 kg/m2 that offer outstanding resistance to chemicals and weathering, low flammability, stress crack resistance, and insulating properties, and extremely easy module installation.</p>
]]></description>
			<content:encoded><![CDATA[<p><a target="_blank" href="http://www.globalsolartechnology.com/solar/index.php?option=com_content&amp;view=article&amp;id=7720:-"></a> </p>
<div ><img alt="Saint-Gobain Solar Displays Easy Installation Crystalline Silicon PV Modules Made With Light Switch frontsheet at Munich Exhibition" src="http://www.memcache-hosting.com/wp-content/uploads/5827067321.jpg" border="0" /><br />© <span class="flinkh" onclick="javascript:void window.open('http://www.flickr.com/photos/sga_se/5827067321/')">saint-gobain abrasives, sweden</span></div>
<p>
Saint-Gobain Solar, the leading manufacturer of sustainable materials and engineered renewable energy solutions, is displaying its easy installation crystalline silicon (c-Si) modules made with LightSwitch® frontsheets at Intersolar Europe, being held in Munich. <br />
LightSwitch fluoropolymer film, which is inherently lightweight, and convenient for module installation, incorporated with the high efficiency of c-Si solar cells provide a unique combination of enhanced performance, increased durability, and manufacturing efficiency, bringing solid benefits to both module installation and manufacturers, and also the end-users. </p>
<p>Conventional c-Si modules typically include a heavy glass front design which requires extra care in handling and module installation costs increase manifold. LightSwitch Frontsheet, which is Ideal for lightweight solar module installation, is a melt processable fluoropolymer providing superior weatherability and UV resistance. These highly transparent films are tough and reliable, and provide frontsheets weighing as low as 0.1 kg/m2 that offer outstanding resistance to chemicals and weathering, low flammability, stress crack resistance, and insulating properties, and extremely easy module installation.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.memcache-hosting.com/28525151/saintgobain_solar_displays_easy_installation_crystalline_silicon_pv_modules_made_with_light_switch_frontsheet_at_munich_exhibition.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

