Advanced Page Caching
Category: Web Development > Ruby On Rails      Posted: 28 Feb 09

Page caching is pretty simple to do, but what happens when you need pagination or dynamic data on your pages? Can you still use page caching? In this screencast we'll start out showing how to solve these problems and finish up with my first rant of the series "Login status is overrated."

Cache Expiration
Category: Web Development > Ruby On Rails      Posted: 28 Feb 09

When you start caching html content which depends on data in your database, what happens when that data changes? You're going to need to expire that cache, and in this episode, we show you how Rails makes this quite easy

Page Caching
Category: Web Development > Ruby On Rails      Posted: 28 Feb 09

Ruby on Rails comes with several caching mechanisms out of the box, starting with Page Caching. In this episode we show how to implement Page Caching in a simple blog application