The fragment-caching tag has no wiki summary.
2
votes
2answers
74 views
How to keep caches warm using Russian Doll caching?
I've been experimenting with Russian Doll fragment caching on a Rails app, more specifically on its main Dashboard page. This is the first page the user sees after he logs in and is a great candidate ...
0
votes
1answer
34 views
With Rails fragment caching working, why are SELECT statements appearing in my logs inside of the cached fragment?
I've just got memcached setup on my website hosted on Heroku using memcachier and dalli. I have wrapped my homepage in a fragment cache block. In my logs, I can see that the fragment is being cached ...
0
votes
0answers
13 views
Post cache substitution changing asp:label to asp:dropdown
I want to use post-cache-substitution in my user-control.
I have gone through some of the links
http://msdn.microsoft.com/en-us/library/ms227429.aspx
But I wanted to change label into dropdown for ...
0
votes
1answer
27 views
Populate cache in Rails manually
In Rails 3.x I want to precompile my cache manually, and I use fragment caching in the views on model instances and static HTML.
Rails lazily populates the cache when the page is requested, which ...
1
vote
3answers
104 views
How to handle key based expiration of collections if there is no parent model in Rails 4.0?
Since action and page caches and sweepers will be removed from Rails 4.0, I started to use cache_digests in my Rails 3.2 application, since I'm suffering from this whole manual expiration nightmare.
...
0
votes
2answers
65 views
Some fields get old values in fragment cache in Rails
I have a view to show the details of a resource that is saved in the database. Some of the details belong to the Resource model itself, and some details belongs to associated models.
In the view I ...
0
votes
2answers
59 views
Rails fragment caching and timestamp displayed
I'm developing a social network like a mix of Twitter and Facebook based on sports. I have a model called Post (id, user_id, receiver_id, message, created_at) and I want to cache the Post views.
...
4
votes
1answer
189 views
rails3 caching: expire fragment with extension
How do I expire a fragment in the cache with a file extension (.json) from a another controller?
I am using Rails 3.2.8.
I have two controllers for the same models: /admin/books_controller and ...
2
votes
2answers
526 views
Russian doll fragment caching with auto expiring keys - performance pros and cons
The question is based on 2 articles:
- Basecamp Next by DHH from 37signals
- Advanced Caching in Rails by Adam Hawkins
I'm a little bit confused about the performance implications of using Russian ...
0
votes
1answer
102 views
Assets miss in Rails (also using fragment caching). No memcache
Using Rails 3.1.1 on Heroku, running with two web dynos.
I am NOT using memcache at the moment. I am using fragment caching successfully.
I am getting a lot of cache miss (and very, very few fresh) ...
1
vote
1answer
61 views
Setting the rails cache store for fragment_caching to be different
Is is possible to configure the rails fragment caching to be a file_store and have the Rails.cache object to store values using a memory store? Or are they both the same storage mechanism in the end?
1
vote
1answer
86 views
Updating a cached user control in asp.net
i have a user control on my page to show the profile picture of logged in user. I have cached this user control using <%@ OutputCache Duration="120" VaryByParam="none" %>.
I am facing an issue ...
0
votes
1answer
271 views
How to expire fragment cache for objects index on object update
I'm fragment-caching this fragment:
<% cache('fragment-id') do %>
<div id="fragment-id">
<%= render @object %>
</div>
<% end %>
Now, obviously, I ...
2
votes
1answer
1k views
Rails 3 caching: How do I use a sweeper with Action and Fragment caching to expire the cache?
I'm working on a page that displays a restaurant menu. I have 2 models: FoodMenu has_many :products and Product belongs_to :food_menu. I don't have controllers for either model. Instead, I am using a ...
5
votes
3answers
622 views
ASP.NET/C# Clear partial output caching
I have a page that has controls that are output caches (partial output caching). These are setup like this:
[PartialCaching(86400, null, null, "campaign.whatwhere", true)]
public partial class ...
0
votes
1answer
215 views
ruby on rails 3.1 fragment caching
I have an app and I'd like to cache some parts of the page, and I have been reading a lot about the ways to do this.
I understand that fragment caching is the best way to do it on my project, but I ...
3
votes
1answer
228 views
Testing fragment creation and expire fragment in Rails (3.0.7)
I'm attempting to implement fragment caching in my application. It displays a lot of data that rarely changes so I figured that fragment caching would be the best solution for some performance ...
3
votes
1answer
335 views
Rails 3.1 wildcard expire cache for action with query string
I have a page where on the where the index action shows a list of Posts, with custom sort columns, pagination, etc. Although I can cache every individual page / sort option with
cache(:direction ...
0
votes
2answers
108 views
How do I avoid constantly re-calculating summary data using Rails?
I have a user profile page that has a sidebar with user stats like not unlike the Stack Overflow profile page (e.g., total visits, number of badges).
The trouble is that currently I'm hitting the ...
1
vote
1answer
241 views
Does Rails' fragment caching suit this problem?
I do not understand yet Rails' caching system, but I've read in the guides section of a feature called fragment caching.
My problem is: my view consist mostly in static elements. It is almost ...
0
votes
2answers
269 views
Page caching issue in ASP.Net
We use page output caching in our ASP.Net website home page to make it appear load faster.
The caching time is very minimum(5 minutes) so that the data updations are reflected to users
within short ...
0
votes
2answers
158 views
Broken links when doing fragment caching in Rails
Suppose there is a blog with posts, comments and users which can comment. Users have SEO-friendly URLs such as http://localhost:3000/users/john (this can be easily done by using permalink_fu).
The ...
1
vote
3answers
2k views
Rails 3: Sweeper not destroying fragments, thinks caching was disabled
I want to expire fragments with a sweeper. The sweeper callbacks are executed, but the calls to expire_fragment do nothing, because (I assume) cache_configured? returns nil. Caching is configured and ...
0
votes
2answers
388 views
Fragment Caching Using Javascript
Can someone point me to some example code on how best to do caching while loading up the dynamic parts of a page using javascript?
My canonical example involves a page where nothing ever changes ...
3
votes
5answers
773 views
Caching a Drupal site with session-specific data on every page
We have a site written in Drupal 6.
We want to use Drupal's caching mechanism to improve performance, but when we turned it on, we found problems because our site has session data displayed on every ...
1
vote
1answer
161 views
Fragment caching with Touch
Currently I am using fragment caching with an object key. And I expire the cache using Touch with updates the updated_at column and then the current cache become obsolete. And a new cache is generated ...
2
votes
1answer
1k views
Working around memcached's lack of wildcard expiration in Rails fragment caching
I'm working on adding fragment caching to a Rails 3 site that has both logged in and anonymous users, and need to control when parts of the page expire based on when content displayed throughout the ...
11
votes
3answers
9k views
Optimize APC Caching
here is a link to how my APC is running : [removed]
As you can see, it fills up pretty quickly and my Cache Full Count goes over 1000 sometimes
My website uses Wordpress.
I notice that every time I ...
0
votes
2answers
259 views
Cannot expire cached fragment by default methods in Ruby on Rails + Devise
I'm using Devise as authenticating solution in Rails and I have a cached fragment :recent_users.
I want this fragment to expire when a new user is registered, changed or removed, so I put in ...
1
vote
1answer
535 views
Rails - caching and permission based views
I use CanCan to check user permissions and display or suppress page content conditionally for my users. I want to cache my pages though, and even with fragment caching can't find an elegant ...
6
votes
5answers
1k views
ASP.NET MVC output cache with dynamic fragment
How could I cache an entire page except a bit at the top which says something along the lines of "Welcome back, Matt! | Log Out" if the user is logged in and so-on?
I'm using ASP.NET MVC 2.
0
votes
2answers
1k views
Memcached and Rails Fragment Caching Issue
When I have 2 views that fragment cache the same query BUT display them differently, there is only one fragment and they both display it the same way. Is there any way around this? For example...
...
0
votes
1answer
259 views
MVC, how to organize caching parts of page and how to be with View?
Right now I'm trying to create my own tiny MVC (just for practice and for understanding MVC pattern details). I'd like to cache parts of pages (dropdowns, lists etc.) and I don't know what is the best ...
2
votes
1answer
379 views
Rails - Best way to implement Optionnal Fragment Caching for testing purposes
I'm using fragment caching a lot and it is essential to me for good performance. However, due to the complexity of the caching I'm using, I need to offer my testers, a way to disable/enable caching as ...
3
votes
4answers
754 views
template fragment caching doesn't seem to work for some custom template tags
I've been implementing caching in my django application, and used per view caching via the cache API and template fragment caching.
On some of my pages I use a custom django template tag, this tag is ...
2
votes
1answer
113 views
Is it possible to automatically derive the components of a cache-key in rails?
When generating cache-keys for rendered content in web applications, you have to take into account all variables that might change the result.
In dynamic environments like rails these can be defined ...
4
votes
2answers
1k views
