<?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 on: 4 WordPress Tips for Surviving Slashdot, Digg, Reddit or StumbleUpon</title>
	<atom:link href="http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/</link>
	<description>A technical, gaming and current-events news site</description>
	<lastBuildDate>Sat, 21 Nov 2009 15:00:42 -0500</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Rudi</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-13942</link>
		<dc:creator>Rudi</dc:creator>
		<pubDate>Fri, 30 Jan 2009 06:42:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-13942</guid>
		<description>I have reported the case to the server administrator, they said that the problem had been solve but not later after that the core.xxx files appeared again. It happened my times. But now the problem doesn&#039;t appear again and I don&#039;t know what they have done to my blog. But thanks for the tip, I will repot it to the  server administrator if the problem occurs again.</description>
		<content:encoded><![CDATA[<p>I have reported the case to the server administrator, they said that the problem had been solve but not later after that the core.xxx files appeared again. It happened my times. But now the problem doesn&#8217;t appear again and I don&#8217;t know what they have done to my blog. But thanks for the tip, I will repot it to the  server administrator if the problem occurs again.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-13941</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Fri, 30 Jan 2009 06:28:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-13941</guid>
		<description>@rudi  disable your core dumps. The core.xxx files are snapshots of the moment the process died. For example on solaris  coreadm -d process to disable core dumps.</description>
		<content:encoded><![CDATA[<p>@rudi  disable your core dumps. The core.xxx files are snapshots of the moment the process died. For example on solaris  coreadm -d process to disable core dumps.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rudi</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-13940</link>
		<dc:creator>Rudi</dc:creator>
		<pubDate>Fri, 30 Jan 2009 03:31:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-13940</guid>
		<description>Great tips. It occurred to my blog that the traffic so high. The server creates some core.xxx files that have huge volume. I delete the files and I installed super cache plugin and it seemed succeed. Thanks</description>
		<content:encoded><![CDATA[<p>Great tips. It occurred to my blog that the traffic so high. The server creates some core.xxx files that have huge volume. I delete the files and I installed super cache plugin and it seemed succeed. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11516</link>
		<dc:creator>Editor</dc:creator>
		<pubDate>Tue, 14 Oct 2008 17:07:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11516</guid>
		<description>victori, you are a badass, thanks for the followup.</description>
		<content:encoded><![CDATA[<p>victori, you are a badass, thanks for the followup.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11515</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Tue, 14 Oct 2008 15:23:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11515</guid>
		<description>1. Subclassed LoadableDetachableModel that uses Memcached 
2. Hibernate 2nd level cache backed by Memcached
3. Jetty session handler backed by memcachedb (BerkeleyDB storage)

notice a trend? ;-)

Configure wicket to use HttpSessionStore to keep all Pagemap data in the session aka your memcachedb storage. This enables you to kill off wicket application servers at will without any expired sessions.

Configure wicket to use ONE_PASS_RENDER RenderStrategy so it does not buffer response data locally, so essentially you can bounce users around from server to server without expiring the session. 

Keeping two jetty instances on a single server can easily support a full blown diggig without any problems. You have the added benefit of stability by redundancy and ability to roll out rolling updates without interruption to your service.

Stateful web applications do scale!

Concerning state size, I have a jetty file session manager written. It lets me keep an eye on session size via &#039;du -hs *&#039; command. Nice and simple.

Some J2EE/hibernate stuff does not vertically scale! so dropping down to SQL is a must. For example, user.getFriends().add(foo); is highly inefficient. It fetches all your friends just to add a single entity to the collection. Works great when you just have 2-5 friends, not so much when you have 10000-30000 friends.

off to bed, pulled an all nighter. Sorry if I have any grammar or typos in my post.</description>
		<content:encoded><![CDATA[<p>1. Subclassed LoadableDetachableModel that uses Memcached<br />
2. Hibernate 2nd level cache backed by Memcached<br />
3. Jetty session handler backed by memcachedb (BerkeleyDB storage)</p>
<p>notice a trend? <img src='http://www.breakitdownblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Configure wicket to use HttpSessionStore to keep all Pagemap data in the session aka your memcachedb storage. This enables you to kill off wicket application servers at will without any expired sessions.</p>
<p>Configure wicket to use ONE_PASS_RENDER RenderStrategy so it does not buffer response data locally, so essentially you can bounce users around from server to server without expiring the session. </p>
<p>Keeping two jetty instances on a single server can easily support a full blown diggig without any problems. You have the added benefit of stability by redundancy and ability to roll out rolling updates without interruption to your service.</p>
<p>Stateful web applications do scale!</p>
<p>Concerning state size, I have a jetty file session manager written. It lets me keep an eye on session size via &#8216;du -hs *&#8217; command. Nice and simple.</p>
<p>Some J2EE/hibernate stuff does not vertically scale! so dropping down to SQL is a must. For example, user.getFriends().add(foo); is highly inefficient. It fetches all your friends just to add a single entity to the collection. Works great when you just have 2-5 friends, not so much when you have 10000-30000 friends.</p>
<p>off to bed, pulled an all nighter. Sorry if I have any grammar or typos in my post.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11512</link>
		<dc:creator>Editor</dc:creator>
		<pubDate>Tue, 14 Oct 2008 14:43:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11512</guid>
		<description>victori,

Sorry to drag this on, but you&#039;re tantalizing the CS-degree in me... is fab40 all done in Wicket/Spring/Hibernate?

I&#039;m a big Wicket fan, haven&#039;t decided on ORM prefs yet and never had an &quot;ah-ha!&quot; moment with Spring where I FINALLY understood what all the hub-bub is about.

I&#039;m curious what you had to do on a Wicket site to survive a Digg; namely with keeping the session sizes down by carefully crafting the model/detachable models for everything.

That is one issue I had with ShoutStuff (Wicket), I was either being sloppy with my models or forgetting that the state can get versioned unless you use IDetachableModel for every single model except those that cannot re-attach.

Anyways I digress... like I said, you got my programming-brain all excited ;)</description>
		<content:encoded><![CDATA[<p>victori,</p>
<p>Sorry to drag this on, but you&#8217;re tantalizing the CS-degree in me&#8230; is fab40 all done in Wicket/Spring/Hibernate?</p>
<p>I&#8217;m a big Wicket fan, haven&#8217;t decided on ORM prefs yet and never had an &#8220;ah-ha!&#8221; moment with Spring where I FINALLY understood what all the hub-bub is about.</p>
<p>I&#8217;m curious what you had to do on a Wicket site to survive a Digg; namely with keeping the session sizes down by carefully crafting the model/detachable models for everything.</p>
<p>That is one issue I had with ShoutStuff (Wicket), I was either being sloppy with my models or forgetting that the state can get versioned unless you use IDetachableModel for every single model except those that cannot re-attach.</p>
<p>Anyways I digress&#8230; like I said, you got my programming-brain all excited <img src='http://www.breakitdownblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11498</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Tue, 14 Oct 2008 03:00:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11498</guid>
		<description>Well I have used many ORM technologies. I went from Activerecord(rails), DBI::Class (perl/catalyst), to Hibernate(wicket/spring/java). I have tried JPA and iBatis to some limited extent. JPA ejb3 works exactly like hibernate but has less features such as cascade deletes and depends on a full blown J2EE application server. 

If it was up to me, I would love an Activerecord HQL/ejb-ql compatible ORM. This might actually be possible with jruby; merge of the HQL parser with activerecord. The one critical thing missing in activerecord is lack of distributed sql cache. Sure you can use page fragment caching, but then you have to man handle it manually ;-)

Anyway good luck with digg, you have a nice site here.</description>
		<content:encoded><![CDATA[<p>Well I have used many ORM technologies. I went from Activerecord(rails), DBI::Class (perl/catalyst), to Hibernate(wicket/spring/java). I have tried JPA and iBatis to some limited extent. JPA ejb3 works exactly like hibernate but has less features such as cascade deletes and depends on a full blown J2EE application server. </p>
<p>If it was up to me, I would love an Activerecord HQL/ejb-ql compatible ORM. This might actually be possible with jruby; merge of the HQL parser with activerecord. The one critical thing missing in activerecord is lack of distributed sql cache. Sure you can use page fragment caching, but then you have to man handle it manually <img src='http://www.breakitdownblog.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Anyway good luck with digg, you have a nice site here.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11494</link>
		<dc:creator>Editor</dc:creator>
		<pubDate>Mon, 13 Oct 2008 23:53:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11494</guid>
		<description>victori,

Great tips, really appreciate you taking the time to write all that up.

Out of curiosity have you guys dabbled with JPA or other persistence technologies like iBatis, or has Hibernate always given you what you needed and done it well enough that you never had to stray?</description>
		<content:encoded><![CDATA[<p>victori,</p>
<p>Great tips, really appreciate you taking the time to write all that up.</p>
<p>Out of curiosity have you guys dabbled with JPA or other persistence technologies like iBatis, or has Hibernate always given you what you needed and done it well enough that you never had to stray?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11493</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 13 Oct 2008 23:00:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11493</guid>
		<description>Editor,
In fairness I know where you&#039;re coming from - there&#039;s always one isn&#039;t there!

Thanks for replying to my comment :)</description>
		<content:encoded><![CDATA[<p>Editor,<br />
In fairness I know where you&#8217;re coming from &#8211; there&#8217;s always one isn&#8217;t there!</p>
<p>Thanks for replying to my comment <img src='http://www.breakitdownblog.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11492</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Mon, 13 Oct 2008 22:53:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11492</guid>
		<description>oh concerning hibernate second level cache, I just dedicated 128mb of ram to memcached. 

More than enough room to cache hot spots on the site. Since Hibernate caches queries it knows when to expire those caches automatically. So you get free cache expiration without any intervention.</description>
		<content:encoded><![CDATA[<p>oh concerning hibernate second level cache, I just dedicated 128mb of ram to memcached. </p>
<p>More than enough room to cache hot spots on the site. Since Hibernate caches queries it knows when to expire those caches automatically. So you get free cache expiration without any intervention.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11491</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Mon, 13 Oct 2008 22:49:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11491</guid>
		<description>4gigs of ram/quad core xeon x5355 opensolaris snv_98 .. snv_90 at the time. 

Offload as much into ram as possible. Do the obvious database optimizations, indexes for large tables where you run constraints or joins on. 8kb filesystem recordsize for efficient database writes for postgres and 16kb for mysql innodb. ZFS really kicks ass in this department, you are able to create partitions and set recordsizes on the fly. 

I had two jetty application server instances load balancing the site on the server. To avoid heavy garbage collections I would kill off the process when RSS ram got high ~510megs. This was done via crontab script that ran at 5 minute intervals. Solaris&#039;s SMF would restart the process automatically. 

All in all it worked great after the first two complete meltdowns from the digg effect. Code base optimization and configuring the right settings does wonders. RAM is your best friend.</description>
		<content:encoded><![CDATA[<p>4gigs of ram/quad core xeon x5355 opensolaris snv_98 .. snv_90 at the time. </p>
<p>Offload as much into ram as possible. Do the obvious database optimizations, indexes for large tables where you run constraints or joins on. 8kb filesystem recordsize for efficient database writes for postgres and 16kb for mysql innodb. ZFS really kicks ass in this department, you are able to create partitions and set recordsizes on the fly. </p>
<p>I had two jetty application server instances load balancing the site on the server. To avoid heavy garbage collections I would kill off the process when RSS ram got high ~510megs. This was done via crontab script that ran at 5 minute intervals. Solaris&#8217;s SMF would restart the process automatically. </p>
<p>All in all it worked great after the first two complete meltdowns from the digg effect. Code base optimization and configuring the right settings does wonders. RAM is your best friend.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11490</link>
		<dc:creator>Editor</dc:creator>
		<pubDate>Mon, 13 Oct 2008 22:38:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11490</guid>
		<description>@JetteroHeller, did you have particular plugins that were killing performance? The hardware sounds pretty good... good enough to handle a spike with some of the plugins above maybe... were there other culprits?

@victori, that&#039;s insanely nice man... server load of 1.0 serving up that many pages. Do you just stick an unholy amount of ram in that machine and set the heap space up to like 4GB so Hibernate&#039;s 2nd level cache can get as big as it wants?</description>
		<content:encoded><![CDATA[<p>@JetteroHeller, did you have particular plugins that were killing performance? The hardware sounds pretty good&#8230; good enough to handle a spike with some of the plugins above maybe&#8230; were there other culprits?</p>
<p>@victori, that&#8217;s insanely nice man&#8230; server load of 1.0 serving up that many pages. Do you just stick an unholy amount of ram in that machine and set the heap space up to like 4GB so Hibernate&#8217;s 2nd level cache can get as big as it wants?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11489</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Mon, 13 Oct 2008 22:14:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11489</guid>
		<description>ah correction, checked out statistics we pulled 123k page views on our highest peak with digg. Load was about 0.85 - 1.0, not too bad. Hibernate second level cache is amazing stuff. We ran out of file descriptors from our first few digg effects. 

Lessons learned:

Keep max keep alives to ~10-15 seconds and make sure your process has enough rlimit/maxfile count to support enough concurrent clients. Slow clients kill your httpd. 

pfiles `pgrep nginx` for example will give you your maxfile descriptor count. 

Can&#039;t stress enough how much nginx kicks ass under load.</description>
		<content:encoded><![CDATA[<p>ah correction, checked out statistics we pulled 123k page views on our highest peak with digg. Load was about 0.85 &#8211; 1.0, not too bad. Hibernate second level cache is amazing stuff. We ran out of file descriptors from our first few digg effects. </p>
<p>Lessons learned:</p>
<p>Keep max keep alives to ~10-15 seconds and make sure your process has enough rlimit/maxfile count to support enough concurrent clients. Slow clients kill your httpd. </p>
<p>pfiles `pgrep nginx` for example will give you your maxfile descriptor count. </p>
<p>Can&#8217;t stress enough how much nginx kicks ass under load.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JetteroHeller</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11488</link>
		<dc:creator>JetteroHeller</dc:creator>
		<pubDate>Mon, 13 Oct 2008 19:31:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11488</guid>
		<description>Excellent post.  I&#039;ve had a WPMU server on a quad 2.33 Xeon get totally melted down in the same way, so thanks for this!</description>
		<content:encoded><![CDATA[<p>Excellent post.  I&#8217;ve had a WPMU server on a quad 2.33 Xeon get totally melted down in the same way, so thanks for this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11482</link>
		<dc:creator>Editor</dc:creator>
		<pubDate>Mon, 13 Oct 2008 15:34:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11482</guid>
		<description>Victori,
It was almost exactly around there and the server load stayed between a 2 and a 3 once those offending plugins were disabled, I was really surprised by that because this is a mostly default WordPress install; we haven&#039;t dug down in it and customized any of the SQL that the platform is emitting at all.

I can imagine with a highly customized solution like you were talking about you could really eek out some awesome performance underload, especially with some intelligent caching techniques.

John,
I&#039;m glad you found the article helpful, thanks for posting! As far as abusing the readership (certainly an bad idea for any publication), I think you meant our response to James&#039;s post? 

It&#039;s really hard to stomach internet know-it-alls after a long day... someone that drops into a genuinely interesting story and instead of contributing or just not saying anything, takes the time to fill out the comment form *just* to leave some asinine remark about how unimpressed they are and some indirect reference to how smart they are.

I try and discourage that with sarcasm... I can see how my response was a bit more biting than it should have been though. I&#039;ll tone it down in the future.</description>
		<content:encoded><![CDATA[<p>Victori,<br />
It was almost exactly around there and the server load stayed between a 2 and a 3 once those offending plugins were disabled, I was really surprised by that because this is a mostly default WordPress install; we haven&#8217;t dug down in it and customized any of the SQL that the platform is emitting at all.</p>
<p>I can imagine with a highly customized solution like you were talking about you could really eek out some awesome performance underload, especially with some intelligent caching techniques.</p>
<p>John,<br />
I&#8217;m glad you found the article helpful, thanks for posting! As far as abusing the readership (certainly an bad idea for any publication), I think you meant our response to James&#8217;s post? </p>
<p>It&#8217;s really hard to stomach internet know-it-alls after a long day&#8230; someone that drops into a genuinely interesting story and instead of contributing or just not saying anything, takes the time to fill out the comment form *just* to leave some asinine remark about how unimpressed they are and some indirect reference to how smart they are.</p>
<p>I try and discourage that with sarcasm&#8230; I can see how my response was a bit more biting than it should have been though. I&#8217;ll tone it down in the future.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11478</link>
		<dc:creator>John</dc:creator>
		<pubDate>Mon, 13 Oct 2008 09:01:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11478</guid>
		<description>Did you also learn, from that little article, not to abuse your readers in the comments? I was pretty impressed with your site until I saw you trying to burn your own readers in the comments. It isn&#039;t funny, and it isn&#039;t clever.

Despite that, this is a good article - thanks for posting it.</description>
		<content:encoded><![CDATA[<p>Did you also learn, from that little article, not to abuse your readers in the comments? I was pretty impressed with your site until I saw you trying to burn your own readers in the comments. It isn&#8217;t funny, and it isn&#8217;t clever.</p>
<p>Despite that, this is a good article &#8211; thanks for posting it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: victori</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11475</link>
		<dc:creator>victori</dc:creator>
		<pubDate>Mon, 13 Oct 2008 07:19:55 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11475</guid>
		<description>just curious how much traffic did you pull in the 24 hour timeframe, amount of page views to be specific? If you don&#039;t mind disclosing that. 

We have hit front page on digg about 5 or 6 times, and have easily pulled 90k page views on dynamic pages without any problems. (Highly optimized Java/Hibernate backend / Async writes for view counter).

-Victor</description>
		<content:encoded><![CDATA[<p>just curious how much traffic did you pull in the 24 hour timeframe, amount of page views to be specific? If you don&#8217;t mind disclosing that. </p>
<p>We have hit front page on digg about 5 or 6 times, and have easily pulled 90k page views on dynamic pages without any problems. (Highly optimized Java/Hibernate backend / Async writes for view counter).</p>
<p>-Victor</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jbj</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11472</link>
		<dc:creator>jbj</dc:creator>
		<pubDate>Sun, 12 Oct 2008 22:34:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11472</guid>
		<description>Great article! I have several posts on diig, delicious, or stumble upon frontpage and never had any problem..Thanks to Wp Super cache!</description>
		<content:encoded><![CDATA[<p>Great article! I have several posts on diig, delicious, or stumble upon frontpage and never had any problem..Thanks to Wp Super cache!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Editor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11468</link>
		<dc:creator>Editor</dc:creator>
		<pubDate>Sun, 12 Oct 2008 16:30:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11468</guid>
		<description>Zoran &amp; John,

Thanks guys. Really caught us off guard but we are very thankful to Justin for the story idea as well as all the readers checking it out and leaving feedback.

Also glad this article was helpful too, I was writing it *as* I had a few terminal windows up watching load, mucking with the plugins keeping track of which ones did what and how to keep things running.

Was pretty interesting. I just assumed we would have to host static-pages only for a day or so, I had no idea that some of those handy meta-information type plugins (most popular, related, etc.) could cause so much ancillary DB traffic. In hindsight it makes sense, but at the time I was bamboozled.</description>
		<content:encoded><![CDATA[<p>Zoran &#038; John,</p>
<p>Thanks guys. Really caught us off guard but we are very thankful to Justin for the story idea as well as all the readers checking it out and leaving feedback.</p>
<p>Also glad this article was helpful too, I was writing it *as* I had a few terminal windows up watching load, mucking with the plugins keeping track of which ones did what and how to keep things running.</p>
<p>Was pretty interesting. I just assumed we would have to host static-pages only for a day or so, I had no idea that some of those handy meta-information type plugins (most popular, related, etc.) could cause so much ancillary DB traffic. In hindsight it makes sense, but at the time I was bamboozled.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11466</link>
		<dc:creator>John</dc:creator>
		<pubDate>Sun, 12 Oct 2008 14:48:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11466</guid>
		<description>Your story was about legos, Java, and annealing algorithms with a hint at secret google insider knowledge, and then it got posted on slashdot.  Be grateful you didn&#039;t also work Dr. Who into the story.  Heh heh.  Actually, though, great article (that one and this one), and congratulations on making the slashdot front page.</description>
		<content:encoded><![CDATA[<p>Your story was about legos, Java, and annealing algorithms with a hint at secret google insider knowledge, and then it got posted on slashdot.  Be grateful you didn&#8217;t also work Dr. Who into the story.  Heh heh.  Actually, though, great article (that one and this one), and congratulations on making the slashdot front page.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Zoran</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11464</link>
		<dc:creator>Zoran</dc:creator>
		<pubDate>Sun, 12 Oct 2008 10:45:12 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11464</guid>
		<description>Thanks for this I was have many problems with this on my old site.</description>
		<content:encoded><![CDATA[<p>Thanks for this I was have many problems with this on my old site.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Time Tracker</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11462</link>
		<dc:creator>Time Tracker</dc:creator>
		<pubDate>Sun, 12 Oct 2008 10:35:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11462</guid>
		<description>Right on with the WP Super Cache.  We had some pretty substantial digg and stumble traffic a few weeks back and actually used the lockdown mode for the first time.  We clocked over 10k visitors over the weekend, and Super Cache didn&#039;t even flinch - quite simply a brilliant plugin.  Thanks for the tip on simple tags.  Didn&#039;t know that it&#039;s a high usage plugin, and agreed...I don&#039;t really see why it should be db heavy.  Perhaps some modification of code is in order.</description>
		<content:encoded><![CDATA[<p>Right on with the WP Super Cache.  We had some pretty substantial digg and stumble traffic a few weeks back and actually used the lockdown mode for the first time.  We clocked over 10k visitors over the weekend, and Super Cache didn&#8217;t even flinch &#8211; quite simply a brilliant plugin.  Thanks for the tip on simple tags.  Didn&#8217;t know that it&#8217;s a high usage plugin, and agreed&#8230;I don&#8217;t really see why it should be db heavy.  Perhaps some modification of code is in order.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 4 WP Tips for Surviving Slashdot, Digg, Reddit or StumbleUpon :: WPLover</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11459</link>
		<dc:creator>4 WP Tips for Surviving Slashdot, Digg, Reddit or StumbleUpon :: WPLover</dc:creator>
		<pubDate>Sun, 12 Oct 2008 09:58:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11459</guid>
		<description>[...] 4 WP Tips for Surviving Slashdot, Digg, Reddit or StumbleUpon&#8594; [...]</description>
		<content:encoded><![CDATA[<p>[...] 4 WP Tips for Surviving Slashdot, Digg, Reddit or StumbleUpon&rarr; [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: redditor</title>
		<link>http://www.breakitdownblog.com/5-wordpress-tips-for-surviving-slashdot-digg-or-reddit/comment-page-1/#comment-11454</link>
		<dc:creator>redditor</dc:creator>
		<pubDate>Sun, 12 Oct 2008 06:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.breakitdownblog.com/?p=4325#comment-11454</guid>
		<description>Thanks man, can you post tragic profiles and lead times from reedit and the other two?

Cheers matey skipper you old sailor!</description>
		<content:encoded><![CDATA[<p>Thanks man, can you post tragic profiles and lead times from reedit and the other two?</p>
<p>Cheers matey skipper you old sailor!</p>
]]></content:encoded>
	</item>
</channel>
</rss>
