How can I cache my REST controller with Rails where my actions have query string parameters?
Example: GET /products/all.xml?max_price=200
T
To use the request url as cache key I do something like this:
caches_action :index, :cache_path => Proc.new {|c| c.request.url }