Questions tagged [page-caching]

95 questions
0
votes
1 answer

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) { context.Response.Write(DateTime.Now.ToString()); …
0
votes
1 answer

Yii When using PageCaching in ajax call not working

I was trying to implement page caching in Yii2 advanced project and everything seemed to be super cool. And suddenly I was hit by a strange issue. Case: On the homepage of the website there is some dynamic data like showing records from DB, info of…
0
votes
1 answer

UBIFS: editted files are not saved. how to sync them to NAND?

I use UBIFS for rootfs on NAND. When I edited a file like /etc/rc.local with nano command and saveed it, "cat /etc/rc.local" shows the editted content, of course. However after removing power supply (without reboot or poweroff command) and supply…
user8257918
  • 55
  • 3
  • 13
0
votes
1 answer

OpenCart 1.5.x.x ajax random value

I have dynamic block with show and hide products from table on random sort. But when the cash page is active, this part of page stom showing products and show only first product from query ... i do not understand how can i make it work with this…
Jeni Vasileva
  • 768
  • 6
  • 26
0
votes
1 answer

Neo4j Heap and pagecache configuration

I'm running neo4j 3.2.1 on Linux machine of 16GB RAM, yet I'm having issues ith the heap memory showing an error everytime. In the documentation, we have: Actual OS allocation = available RAM - (page cache + heap size) Does it mean that if we…
Muna arr
  • 353
  • 2
  • 13
0
votes
0 answers

Wrong pointers while trying to allocate pages in kernel virtual address space

I am working on a Linux driver on x86-64 CentOS 7. We have a kernel module which reads and writes into files . This module tries to get pages which are guaranteed to be contiguous. It works fine when I try smaller read/write jobs of 5 GB or 10 GB.…
stev
  • 182
  • 1
  • 11
0
votes
1 answer

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 from the layout are real time (or cached other…
takeshin
  • 49,108
  • 32
  • 120
  • 164
0
votes
1 answer

Hippocms Cache warmer

Publication changes in cms invalidates whole cache in Hippocms. Is there any best practice to warm cache in hippocms? Cache warmer by scheduler not an option. Is it possible to warm by trigger on cache invalidation?
Bagdat
  • 308
  • 4
  • 15
0
votes
1 answer

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 desired routes of the basic formulas: /(bazes/
coneybeare
  • 33,113
  • 21
  • 131
  • 183
0
votes
2 answers

How to Stop Caching a Section in a cached PHP Page with W3TC

We currently cache our homepage. However, there is a section of the homepage we don't want cached, because it changes anywhere from a 1/2 hour to 3 hours. Is there a way to write my code in PHP so that this one section doesn't get cached? Is this…
Yazmin
  • 1,154
  • 5
  • 17
  • 34
0
votes
0 answers

CSS on Magento staging website not updating

Since last tuesday, out of the blue the css on our Magento staging website won't update after I've saved changes. The staging website has been working well for over a year. On the live Magento website the css is updating fine. Last friday we…
0
votes
1 answer

Does template caching exist in Meteor or Iron-Router?

Is there any way I can cache templates or pages in Meteor or Iron-Router? I'm trying to build a mobile application and the issue is that scroll position is lost and DOM elements need to be recreated on page changes.
Jordan
  • 1,003
  • 2
  • 12
  • 24
0
votes
1 answer

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 hit counter method (by IP) which is called every…
Ole Spaarmann
  • 15,845
  • 27
  • 98
  • 160
0
votes
1 answer

Page cache pile up and force memory allocation on other nodes

I am currently working on a NUMA machine. I came across an issue that when I perform disk I/O, the page cached started to pile up in the current node (node 0). And when I further malloc new memories, they went to another node (node 1), leading poor…
user3743384
  • 91
  • 1
  • 11
0
votes
2 answers

Codeigniter output cache: what parts of the called controller function get executed?

One of the main purposes of caching is to save resources and not do things like hit your database every request. In light of this, I'm confused by what all Codeigniter does in a controller when it encounters a cache() statement. For…
tim peterson
  • 23,653
  • 59
  • 177
  • 299