Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
2k views

Optimize APC Caching

here is a link to how my APC is running : http://www.animefushigi.com/apc.php As you can see, it fills up pretty quickly and my Cache Full Count goes over 1000 sometimes My website uses Wordpress. ...
5
votes
4answers
740 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.
4
votes
2answers
1k views

Fragment Caching with Memcached

Is there any way of using Memcached for fragment caching in Rails?
3
votes
5answers
366 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 ...
3
votes
4answers
580 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
75 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 ...
1
vote
1answer
75 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 ...
1
vote
0answers
164 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 ...
1
vote
1answer
107 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 ...
1
vote
3answers
965 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 ...
1
vote
1answer
697 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 ...
1
vote
1answer
266 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 ...
0
votes
1answer
14 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 ...
0
votes
0answers
46 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
139 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 ...
0
votes
0answers
41 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 ...
0
votes
2answers
39 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 ...
0
votes
2answers
119 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
104 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 ...
0
votes
2answers
141 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 ...
0
votes
1answer
81 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 ...
0
votes
2answers
147 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 ...
0
votes
1answer
270 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 ...
0
votes
2answers
804 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
135 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 ...