<?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"
	>
<channel>
	<title>Comments on: Caching of Dynamic Data Sets</title>
	<atom:link href="http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/feed/" rel="self" type="application/rss+xml" />
	<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/</link>
	<description>it and development at europe's leading clubbing community</description>
	<pubDate>Mon, 07 Jul 2008 00:05:54 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.5.1</generator>
		<item>
		<title>By: Leo Büttiker</title>
		<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/#comment-4801</link>
		<dc:creator>Leo Büttiker</dc:creator>
		<pubDate>Thu, 24 Jan 2008 09:02:01 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/2007/11/23/caching-of-dynamic-data-sets/#comment-4801</guid>
		<description>@me: At our scale it doesn't matter if you save textelements to a textfile or a database. You get some benefits from the textfile like speed and light weight handling. But more complex handling (think distributing over the cluster), Performance issue (processing some megs of textfile needs also resources) and backup (backup of the database is free, because we do it anyway) kill this benefits. At our scale you have to cache it anyway and handling of the database is just easier for us because we have to do it anyway.</description>
		<content:encoded><![CDATA[<p>@me: At our scale it doesn&#8217;t matter if you save textelements to a textfile or a database. You get some benefits from the textfile like speed and light weight handling. But more complex handling (think distributing over the cluster), Performance issue (processing some megs of textfile needs also resources) and backup (backup of the database is free, because we do it anyway) kill this benefits. At our scale you have to cache it anyway and handling of the database is just easier for us because we have to do it anyway.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: techblog.tilllate.com &#187; Trevi is online!-</title>
		<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/#comment-4718</link>
		<dc:creator>techblog.tilllate.com &#187; Trevi is online!-</dc:creator>
		<pubDate>Mon, 07 Jan 2008 07:39:15 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/2007/11/23/caching-of-dynamic-data-sets/#comment-4718</guid>
		<description>[...] clever caching and proper code we managed to reduce the number of queries on all pages. With a clever design, [...]</description>
		<content:encoded><![CDATA[<p>[...] clever caching and proper code we managed to reduce the number of queries on all pages. With a clever design, [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: me</title>
		<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/#comment-4679</link>
		<dc:creator>me</dc:creator>
		<pubDate>Thu, 03 Jan 2008 06:47:32 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/2007/11/23/caching-of-dynamic-data-sets/#comment-4679</guid>
		<description>i realy do not understand why you need the translated strings in the database. what is the benefit compared to some plain files in the filesystem (csv/mo)?</description>
		<content:encoded><![CDATA[<p>i realy do not understand why you need the translated strings in the database. what is the benefit compared to some plain files in the filesystem (csv/mo)?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: developercast.com &#187; Tilllate Blog: Caching of Dynamic Data Sets</title>
		<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/#comment-3775</link>
		<dc:creator>developercast.com &#187; Tilllate Blog: Caching of Dynamic Data Sets</dc:creator>
		<pubDate>Wed, 05 Dec 2007 17:36:23 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/2007/11/23/caching-of-dynamic-data-sets/#comment-3775</guid>
		<description>[...] the Tilllate Blog, there&#8217;s a new post discussing the use of caching in applications, specifically for dynamic data.   Consider you have a [...]</description>
		<content:encoded><![CDATA[<p>[...] the Tilllate Blog, there&#8217;s a new post discussing the use of caching in applications, specifically for dynamic data.   Consider you have a [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mauro</title>
		<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/#comment-3656</link>
		<dc:creator>Mauro</dc:creator>
		<pubDate>Sat, 01 Dec 2007 19:35:55 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/2007/11/23/caching-of-dynamic-data-sets/#comment-3656</guid>
		<description>I don't know your specific needs, but since page translations are something not so big, and they do not tend to change so much in time, I prefer to store them locally in shared memory (with APC, for example). Of course, everything is loaded with a rational TTL, and you get the benefit of not doing any request just for translations. So this would be Three-Tiered caching.

Also, if you deploy a nice set of classes for Caching, you can move a certain object from one tier to another without any hassle.

Regards.</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know your specific needs, but since page translations are something not so big, and they do not tend to change so much in time, I prefer to store them locally in shared memory (with APC, for example). Of course, everything is loaded with a rational TTL, and you get the benefit of not doing any request just for translations. So this would be Three-Tiered caching.</p>
<p>Also, if you deploy a nice set of classes for Caching, you can move a certain object from one tier to another without any hassle.</p>
<p>Regards.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: links for 2007-12-01 - smalls blogger</title>
		<link>http://techblog.tilllate.com/2007/11/30/caching-of-dynamic-data-sets/#comment-3631</link>
		<dc:creator>links for 2007-12-01 - smalls blogger</dc:creator>
		<pubDate>Sat, 01 Dec 2007 00:32:59 +0000</pubDate>
		<guid isPermaLink="false">http://techblog.tilllate.com/2007/11/23/caching-of-dynamic-data-sets/#comment-3631</guid>
		<description>[...] PHP: Caching of Dynamic Data Sets Caching of Dynamic Data Sets (tags: cache php programming technique resource tutorial) [...]</description>
		<content:encoded><![CDATA[<p>[...] PHP: Caching of Dynamic Data Sets Caching of Dynamic Data Sets (tags: cache php programming technique resource tutorial) [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
