Re: Has caching strategy changed? Seeing different ETags via redbot.org

2011-04-07 Thread Todd A. Jacobs
Heroku doesn't support all forms of rails caching, because it's a read- only filesystem. ETags usually work well, but a lot depends on how you're generating them. I just posted over on Rails Talk about the fact that fresh_when() doesn't support collections, for example. You'll definitely need to

.htaccess

2011-04-07 Thread Sam
Is there any way (or equivalent way) to modify the htaccess file on Heroku? I am trying to fix a warning in google chrome Resource interpreted as Font but transferred with MIME type application/octet- stream, which can be fixed via the htaccess file (see here:

How to compress JSON response?

2011-04-07 Thread yomofo
I'm using Varnish cash for my JSON responses. But can I also compress this payload? How would I configure web client and server to deliver compressed JSON? -- You received this message because you are subscribed to the Google Groups Heroku group. To post to this group, send email to

Re: Has caching strategy changed? Seeing different ETags via redbot.org

2011-04-07 Thread Keenan Brock
Barry, One thing you may want to try. stale?() and fresh_when() accept arrays for the :etag argument --Keenan On Thursday, April 7, 2011 at 9:41 AM, Todd A. Jacobs wrote: Heroku doesn't support all forms of rails caching, because it's a read- only filesystem. ETags usually work well, but a