The rack-cache tag has no wiki summary.
0
votes
0answers
26 views
Rack::Cache not busting cache after changed etag
I have setup Rack::Cache to work with my rails application, heroku, Dalli and memcachd. Everything works as expected however when I update my content in the backend of my site the cache is still ...
1
vote
0answers
124 views
Rack-Cache: “stale, valid, store”
I use in my rails app a page caching solution along with an expire_at statement.
My page is good for 1 hour and then needs to be redone.
For some reason the first hour when my rails server start its ...
1
vote
1answer
133 views
Bypass Rack::Cache for requests coming from a CDN
I have a Rails 3.2 app, deployed to heroku. I use caching with Rack::Cache and Amazon CloudFront.
For Requests that are served via CloudFront (assets, mostly), the caching layer with Rack::Cache is ...
2
votes
1answer
803 views
What is the point of Varnish and Rack-Cache for a Rails app?
I am a bit confused about the purpose of Varnish and Rack-Cache for a Rails app. In config/environments/production.rb caching can be set with something like
config.static_cache_control = "public, ...
1
vote
1answer
1k views
Rails 3.2 Rack::Cache HTTP Headers and Action Caching
Good afternoon,
I've run into some issues trying to combine HTTP caching with Rack::Cache and action caching (on my Heroku-hosted app).
Using them individually, it seems to be working. With action ...
7
votes
1answer
896 views
Heroku Cedar Stack - Rack Cache Headers
Good evening everyone,
Don't know if I'm just tired, but I can't figure this out for the life of me. Trying to use Rack::Cache to cache some of my static public pages on Heroku, in addition to doing ...
1
vote
0answers
593 views
rails rack cache - how to manually clear all the cache
I cached a page via rack-cache, and now the browser never displays the updated page cuz its showing the cached version.
how do I clear all the cache? (Note: I deleted all the cached pages from the ...
1
vote
1answer
419 views
Poor performance with Rack::Cache
I have Rack::Cache set up as the very top (last) middleware in my stack. My app is hosted on heroku cedar, so Rack::Cache is responsible for static assets as well.
It's backed by the heroku memcached ...
7
votes
1answer
903 views
Rails 3.1 and Http Page Caching
Given that Heroku Cedar doesn't have http caching provided by Varnish I would like to use Rack::Cache.
I have been told that rails 3.1.1 have Rack::Cache active by default, I just need to make sure ...
2
votes
2answers
863 views
Rails/Dragonfly/Apache - Rack::Cache - how to use X-Sendfile?
I'm using Dragonfly to serve processed images for my Rails app. Dragonfly relies on Rack::Cache for future visits to those processed images, so that Dragonfly won't have to process those images again ...
21
votes
2answers
3k views
Disadvantages to rack-cache vs. Varnish in Heroku cedar stack?
The previous 2 Heroku application stacks came with a Varnish layer which automatically reverse-proxy-cached content based on http headers.
The new Heroku cedar stack doesn't have this Varnish layer. ...
3
votes
1answer
625 views
Could not find rack-cache-1.0.3 in any of the sources
I have created a very basic Rails 3.1 app, deployed to a box that runs Ruby 1.8.7 (P334) (I can't easily go to 1.9.2. there unfortunately).
After deploying and running 'bundle install' I tried to run ...
1
vote
1answer
132 views
Ignore googlebot for Rack::Cache?
I'm using Rack::Cache, and google search bot triggers all my cache misses, so my cache is always full of pages that don't actually represent the most popular ones on my site, I can't seem to find how ...