Caching is the use of a faster data store to improve response time, by reducing the amount of processing.
0
votes
0answers
14 views
Drupal + Varnish: cache revalidation
I have Drupal set up with Varnish cache. I have understood almost every part in the process of setting and using the cache. Yet, there is a subject I need some enlightenment on.
Let's say I access my ...
1
vote
0answers
35 views
How to cache url aliases properly in Drupal 7
I have heard Drupal 7 caches url aliases per page. This is not useful if you are caching pages in Varnish for example. The D6 module Pathcache was effectively for this purpose however it does not have ...
1
vote
1answer
24 views
Turn off Drupal caching without Access to admin panel
I'm using Drupal 7 on WAMPP , Windows 7
Background: Drupal on my local box is copy of working project, but this local version I can not login like admin , because it doesn't store session. It doesn't ...
0
votes
0answers
14 views
How to tell which page resources or items are being loaded via a CDN in Drupal 7?
I just setup the free cloudflare CDN for Drupal 7 and wanted to know how and which items on the page are being retrieved from the CDN? Where can i go to see this data in the browser?
-1
votes
0answers
17 views
Cache conflict with boost
I cached my website with the great Boost module and i need the cache expiration module too to manage my expiration logic .
I installed also the cron cache module to help me flushing all the database ...
1
vote
1answer
22 views
How to find out whether or not a page is cached?
I have some serious problems with the performance of my Drupal website and I think that the problem may caused by the fact, that the pages are not cached. How can I find out whether or not a page was ...
0
votes
0answers
19 views
Pages don't update, clearing cache doesn't help
I have a site on Drupal 6. A week ago I've update some content and the changes are visible when I'm logged in, but when opening the site as an anonymous user, I still get the old content. I've tried ...
0
votes
1answer
28 views
How can I ensure this block is properly cached?
I have been trying to get the some book menus displayed by nice menu, and after asking some questions on stackoverflow 1 and stackoverflow 2 settled on this code. My ultimate intention is to turn it ...
1
vote
0answers
22 views
Path of a block
We have a home page (Drupal 7) on which we have a block that we want to cache for only 1 minute while the rest of the page can be cached longer. We are using Akamai and Varnish for this.
We ...
0
votes
0answers
13 views
render array caching per node
I have a few render arrays inside hook_node_view which I'd like to cache. I'm doing something similar to the below:
$my_item = array(
'#theme' => 'item_list',
'#items' => array(),
...
3
votes
0answers
46 views
Letting anonymous users vote in a poll when using Varnish
I have a poll on my front page that I want users to be able to vote on, but anonymous users always just see the results and are never able to vote. I've been trying just about everything I can think ...
1
vote
1answer
71 views
Cache Form table size is enormous
Cache table's size had increased to 10+ GB last month, and I had fixed it temporarily by truncating it. Last time I checked it was around 1GB. So in couple of months it will hit 10GB again. How should ...
2
votes
0answers
46 views
Is form data cached?
Is form date cached? I have an interesting bug on my site. There is a form for logged in users and it is used very frequently. Sometimes, after long time usage, some data doesn't change when it should ...
1
vote
1answer
41 views
Selectively clear cache, without AdminMenu
I've been using AdminMenu on my site, and have noticed significant performance issues. I'd like to disable it, but I have a number of "Admin Lite" users, who depend on being able to selectively clear ...
1
vote
1answer
35 views
How do I not cache dynamic content but cache everything else (or similar workaround)?
I have a production site with page caching enabled (this is not negotiable). One very popular feature requires dynamic content to be queried from an external socket and displayed; this content is ...