This repository is private.
All pages are served over SSL and all pushing and pulling is done over SSH.
No one may fork, clone, or view it unless they are added as a member.
Every repository with this icon (
) is private.
Every repository with this icon (
This repository is public.
Anyone may fork, clone, or view it.
Every repository with this icon (
) is public.
Every repository with this icon (
| name | age | message | |
|---|---|---|---|
| |
.gitignore | ||
| |
MIT-LICENSE | ||
| |
README | ||
| |
Rakefile | ||
| |
doc/ | ||
| |
init.rb | ||
| |
lib/ | ||
| |
spec/ |
README
Lazy Loader
===========
got some expensive method call in you controller for some data that isn't always used in the view (perhaps it's referred
to in a partial cache block)? Don't want to mess up your controller with duplicate conditionals from your views?
use the lazy loader! it's easy and fun!
if in your controller you previously had
def index
@posts = Post.find_all_by_a_painfully_slow_method
end
you would now write
def index
@posts = lazy_load { Post.find_all_by_a_painfully_slow_method }
end
and your painfully slow finder methods will only be called if @posts is actually referred to in the view.
This works by created a LazyLoader proxy object that takes the place of your collection (or whatever it is) and will
instantiate your object the first time any method is called on it. It then caches your original object and routes all
methods calls through.
You will get a performance hit if you are calling many methods on your object, but the common case for these is
returning a collection of ActiveRecord::Base and once you've called each you're done with the proxy.
Hopefully this can help you keep your data code neat and tidy in the face of caching and nasty complex views
=====================================
Copyright 2008 John Barton and Envato







