Interested in learning web development, new language or just want to keep yourself updated with what's happening in information technologies? This site brings you the vast collection of screencast / video from net that can help you learn new technology, keep you informed of what's new, provide how to video tutorials and help you advance in information technology field. Not to mention seeing is better then reading or listening.

Caching in Rails 2.1

Rails 2.1 brings some new caching features which makes it very easy to cache any values including models. See how in this episode.

Managing a high performance rails app without tearing your hair out

James Cox shows how to keep a Rails site up and running, while keeping performance high. The presentation dives deep into issues of keeping page perfor...

Action Caching

Action caching behaves much like page caching except it processes the controller filters. You can also make it conditional as seen in this episode

Fragment Caching

Sometimes you only want to cache a section of a page instead of the entire page. Fragment caching is the answer as shown in this episode

Page Caching

Page caching is an efficient way to cache stateless content. In this episode I will show you how to cache the dynamic javascript we created last week

Distributed Caching Essential Lessons

In this presentation, recorded at Javapolis, Cameron Purdy shows how to improve application performance & scalability via caching architectures to redu...

Counter Cache Column

If you need to display the record count for a has_many association, you can improve performance by caching that number in a column.

Caching with Instance Variables

Learn a quick way to improve performance. Just store the end result of an expensive command in an instance variable!