Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
411 views

Turn off page-level caching in a user control

I have a page with the following caching defined: <%@ OutputCache Duration="60" VaryByParam="None" %> I have a user control inside that page that i don't want cached. How can I turn it off ...
3
votes
2answers
156 views

caches_page :all

Is there any way to tell Rails 3 to cache all pages in a given controller without having to list them all when calling caches_page? I tried caches_page :all, but it doesn't work.
3
votes
5answers
786 views

Rails page caching and flash messages

I'm pretty sure I can page cache the vast majority of my site but the one thing preventing me from doing so is that my flash messages will not show, or they'll show at the wrong time. One thing I'm ...
2
votes
1answer
349 views

Page Caching with Memcached

I am using Memcached in my Ruby on Rails 3 app. It works great with action and fragment caching, but when I try to use page caching, the page is stored in the filesystem instead of in Memcached. How ...
2
votes
2answers
227 views

How to enable page caching in a functional test in rails?

Is it possible to turn on page caching for a functional test? The following didn't work: class ArticlesControllerTest < ActionController::TestCase def setup ...
1
vote
2answers
104 views

My Rails page_cache is attaching someone else's domain to links, how can I stop this?

Let me try to explain what the situation is as thoroughly as I can see it. I have a Rails app using page caching for a specific part of the site. When looking through Google Analytics I noticed my ...
1
vote
1answer
103 views

Rails page caching with intra-page administration

I'd love to use page caching on a Rails site I run. The information on each page is mostly constant, but the queries that need to be run to collect the information are complicated and can be slow in ...
1
vote
2answers
121 views

Timed Page Caching in Rails

In a project I'm working on, I'm requesting data from an external API in my controller, which is then displayed in the view. I've recently begun running into exceptions being thrown due to rate ...
1
vote
4answers
992 views

Rails' page caching vs. HTTP reverse proxy caches

I've been catching up with the Scaling Rails screencasts. In episode 11 which covers advanced HTTP caching (using reverse proxy caches such as Varnish and Squid etc.), they recommend only considering ...
0
votes
1answer
120 views

Cache miss with Rails 3.2 and page caching in development - anyone else?

Using Rails 3.2 in development mode, I'm trying to test out some simple page caching. pages_controller.rb class PagesController < ActionController::Base caches_page :index, :show def index ...
0
votes
1answer
28 views

Rails Page Caching for XHR

How does Rails' cahes_page mechanism deal with Ajax/XHR requests? An action typically responds differently based on request.xhr?, but the path is the same. So will Rails arrange for both versions to ...
0
votes
1answer
36 views

Caching HTML Pages

I wanted a mechanism to cache/index the html pages for a website as it is. So, that if a requests comes for that page again, I can simply fetch that page from cache or index and send it. Is it ...
0
votes
0answers
36 views

ASP.NET MVC 3.0 Page Cache?

I am working on ASP.Net MVC 3.0 Razor Engine Application. I have a Page which holds a button to load a form. when user clicks the Button this will load a form to the page. If he Clicks the button ...
0
votes
1answer
119 views

how to access user id from cookie using javascript: Rails, Devise, Page Caching

I have various image galleries for different users. For the most part the complete page may be cached. However I also want the following features: If a user is logged in and visiting his own ...
0
votes
3answers
121 views

Render a page as a saved HTML file using Rails 3.0?

I'm building a simple website generator application in Rails 3.0. I'd like a "publish" action in a controller that works just like an ordinary "show" action, but instead, saves a page as an HTML file ...
0
votes
1answer
111 views

enabling rails page caching causes http header charset to disappears

I need charset to be utf-8, which seem to be the case by default. Recently I enabled page caching for a few static pages: caches_page :about The caching works fine, and I see the corresponding ...
0
votes
1answer
73 views

How do I get a custom IHttpHandler to Be Capable of Handling Page cache?

This is my code: class HandlerTest : IHttpHandler,System.Web.SessionState.IRequiresSessionState { public void ProcessRequest(HttpContext context) { ...
0
votes
1answer
482 views

How to cache layout content in Zend Framework

How would you implement caching of the layout content in Zend Framework? In the layout.phtml I do: $this->layout->content and I want the content of this variable to be cached. The other widgets ...
0
votes
1answer
864 views

Extra params in Rails 3 routes and resources

The new rails routes are great in many aspects, but I am looking for the best way to achieve page caching with pages and formats like I had in rails 2.x and am coming up short I have many possible ...
0
votes
1answer
495 views

Rails Page Caching with a hits/views counter. How?

I want to use rails page caching to speed up a application which encounters heavy load. But I also need to count the hits/views on the objects presented. So I have the model "Article" with a unique ...