The page-caching tag has no wiki summary.
0
votes
1answer
22 views
Devise redirect after login or logout doesn't work with Rails page caching
I'm using Devise for authentication in my Rails app on Heroku.
I have redirects after login and logout setup the way it's suggested to do so in the Devise wiki. ...
0
votes
0answers
35 views
Full page cache with APC possible? (CakePHP)
I have my website cached using full page caching. So for every page an html file is created.
As I am using CakePHP, I can define that APC caching would be used instead of file caching. However, if ...
1
vote
1answer
135 views
undefined method `page_cache_extension' for ActionController::Base:Class with BRCOBRANCA
I'm executing Rails 3.2.1 with Ruby 1.8.7 on Ubuntu.
When I execute "rails s" on console this message appears: undefined method `page_cache_extension' for ActionController::Base:Class
I tryed comment ...
1
vote
1answer
145 views
Linux Page Cache Status
I'm able to list page cache statuses in my OS by using page-types tool in Linux kernel source tree. Such as:
referenced,uptodate,lru,mappedtodisk
referenced,uptodate,lru,active,private
In ...
3
votes
1answer
152 views
Linux Page Cache Replacement
I have two PostgreSQL databases named data-1 and data-2 that sit on the same machine. Both databases keep 40 GB of data, and the total memory available on the machine is 68GB.
I started data-1 and ...
0
votes
1answer
46 views
ActionController caching not working in dev and test environments
I have this controller:
class PagesController < ApplicationController
caches_page :index
def index
end
end
and action_controller.perform_caching enabled for each in environment.
On ...
0
votes
1answer
66 views
When not to use Page Caching?
Excerpt from the Rails documentation:
One of the issues with Page Caching is that you cannot use it for
pages that require to restrict access somehow. [...]
What does "restrict access" exactly ...
1
vote
1answer
293 views
Rails page caching expires_in
In an arbitrary Rails controller will the line below work?
caches_page :show, :expires_in => 1.days
I use memcached, but am confused by how page caching works. Does it use the file system or ...
0
votes
1answer
46 views
StackOverflow's Ask Form mechanism?
We all see,
When we are in process of writing a question on StackOverflow, before we post our question. If we close the browser or refresh it, we can still see that, all the content we typed in form ...
0
votes
1answer
2k views
Codeigniter Web Page Caching and Database Caching both?
I am still new into Codeigniter framework. Today I read about Database Caching http://codeigniter.com/user_guide/database/caching.html and Web Page Caching ...
0
votes
0answers
96 views
How can I specify multiple address_space structs for an inode?
Say that two different processes each open two different files. Normally, they would each have their own inode and each inode would have their own struct address_space (this is the guy who remembers ...
4
votes
2answers
675 views
When does Rails 3.2 use the pages that it caches to disk?
In an old Rails project page caching works as I expect from reading doc online, in Rails 3.1 / 3.2 it does not work the same way. It appears like Rails writes the pages to disk but never uses them ...
2
votes
1answer
1k 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
115 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
125 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
1answer
467 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
369 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 ...
3
votes
1answer
317 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 ...
5
votes
2answers
526 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.
2
votes
1answer
1k 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 ...
0
votes
1answer
150 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)
{
...
1
vote
2answers
148 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 ...
0
votes
1answer
957 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
1k 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 ...
8
votes
1answer
915 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 ...
0
votes
1answer
645 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 ...
2
votes
2answers
461 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
1answer
154 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 ...
9
votes
7answers
2k 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 ...
1
vote
2answers
200 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
1k 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 ...