A cache is a mechanism for temporary storing (caching) documents or data, to reduce access time.

learn more… | top users | synonyms (3)

0
votes
0answers
10 views

Cache viewer for Google Chrome

I want to make a simple cache viewer for Google Chrome with C#, I didn't find any sample about how to access Chrome cache I found that the cache existing on ...
0
votes
0answers
6 views

Doctrine 2 APC not caching

I'm using APC to cache my doctrine queries. I've setup my configuration cache params to apc: 'metadata_cache' => 'apc', 'query_cache' => 'apc', 'result_cache' => 'apc', And then i use ...
0
votes
0answers
12 views

HSQL caching too aggressively?

In my application, I need the ability to close all HSQL connections, delete the database files, and then open new connections that create a new database. I am using CACHED tables on disk. What I am ...
0
votes
1answer
32 views

textbox text changes, querystring parameter doesn't

I'm using a Textbox with an AutoCompleteExtender. Enter the part number, click Find - it fills in the page. I have a button on the page that reads the text of the textbox, uses that as a querystring ...
1
vote
2answers
33 views

Prevent caching of HTML page

I have a HTML page. The problem is that I do not want to have the users to refresh the page each time I put on new content. I have the following code in order to make sure that the page is not ...
0
votes
0answers
12 views

Java thread blocked at com.arjuna.ats.internal.arjuna.objectstore.FileSystemStore.createHierarchy

I run some load test in my Jboss application and when I launched JvisualVM to see what happen, I found a lot of blocked threads ( 150 over 400 threads ). So I done a Thread dump and all of this ...
0
votes
0answers
20 views

Copy Large Result Set From SQL Server to Redis or a NoSql Database

We have a large table in SQL Server (100+ million rows) that we would like to export to either Redis or another NoSQL database like RavenDB or MongoDB for efficient caching. We would like this export ...
0
votes
1answer
25 views

De-uglify memcache boilerplate in Python

I'm just getting started with Python. I'm making heavy use of caching in my app and my code is increasingly littered with this same pattern, which is the standard caching pattern I've seen used all ...
0
votes
0answers
18 views

Can I cache This actionfilter Database calls [closed]

public class SidebarData : ActionFilterAttribute { public override void OnActionExecuted(ActionExecutedContext filterContext) { ...
0
votes
3answers
30 views

How to cache resources in Asp.net MVC?

My Requirement is i need to Cache all the assets such as Images,Script,Css. Because these are all static. Whenever we browse we don't need to reload again. How can i do this Asp.net MVC. Is there is ...
0
votes
1answer
20 views

Manually renewing cached resources before browser does

I have some resources that my pages are using, defined as: <script type="text/javascript" src="dictionary.js"></script> Where dictionary.js is actualy created on the fly and returned ...
0
votes
0answers
6 views

how to kill cache in cocoon?

I was under the impression that the following code in sitemap.xmap will kill the cache. <map:actions> <map:action name="cachekiller" ...
0
votes
0answers
13 views

Android caches no-ip forever

I recently coded a widget to communicate with my personal computer and execute lines of commands. The widget works completely fine but the problem i have is that android caches my no-ip hostname and ...
-1
votes
0answers
14 views

Is there a free persistent fault-tolerant Java caching library? [closed]

I am a bit frustrated with ehcache because the free version invalidates the cache very often, for example when my program shuts down unexpectedly because of an exception, even when I flush after each ...
0
votes
0answers
8 views

Caching/Etag for Static Action in Rails 4

Since Rails 4 removed page caching and action caching, I'm wondering what is the Rails 4 way to cache an action that has no variables and has only html in the view? Should I fragment cache the static ...
0
votes
0answers
13 views

Jetty REST json service - My services response is being cached and I don't know why

Mad probs for the zilians of answers I've found on this garden of eden. Finally I have an issue I can't solve and find, and I hope you guys wouldn't mind helping me out. I'm currently working on a ...
1
vote
1answer
36 views

DO not load a HTML page from cache

Here's what I need to get, the version of the page must be the last. It's a price list, no way i want the price from last week. So I got some code from everywhere on the web and paste it to my ...
0
votes
0answers
5 views

Doctrine2: Repositories/Tables saved/cached in php file

my question is about the possibility to cache the entries of database tables in pure PHP files, e.g. as arrays. Imagine the following DQL query SELECT * FROM tableA a JOIN a.tableB b JOIN b.tableC c ...
0
votes
0answers
15 views

Grails Cache Plugin leaks CPU

I have a Grails 2.2.2 and I am using cache plugin to speed up view rendering. However, after running a siege load testing on the server, the CPU remains at 100% to 400% - even after the benchmark is ...
-2
votes
1answer
24 views

Returning personalized data [closed]

I'm building an app that gives the user personalized news based on their interest. The articles contain entities(e.g, Obama, Romney, USA) and a category (eg., Politics) and the user can vote up/down ...
56
votes
4answers
1k views

What is “cache-friendly” code?

Could someone possibly give an example of "cache unfriendly code" and the "cache friendly" version of that code? How can I make sure I write cache-efficient code? What are the do's and don't's? Any ...
0
votes
0answers
10 views

$smarty->caching() properly

In Smarty.class.php the caching variable is declared var $caching = 0; But why is it always repeated in each .php-file by $smarty->caching = 0; Isn't this obsolete?
0
votes
0answers
11 views

Rails Cache Digest and Jbuilder

I am using Jbuilder for my JSON API output and now i want to add caching using the 'cache_digest' gem for Rails 3.2.13. It works fine, the cache template is created and it read from the cache but ...
0
votes
0answers
3 views

asp.net clear bfcache update panel in safari

I'm trying to clear bfcache in Safari. I found a js solution here that works without an update panel, but when I add an update panel it stops working. Prevent safari loading from cache when back ...
0
votes
0answers
6 views

How can I configure Varnish to cache range requests?

I'm trying to configure Varnish to cache range requests. I notice the http_range_support option, but everything I've read says that this will attempt to cache the entire file before satisfying the ...
0
votes
0answers
10 views

Spring @EnableCaching with @Inject/@Autowired issue

I found an issue when using @EnableCaching annotation together with @Inject/@Autowired in @Configuration class: Simple example to reproduce: Configuration class: @Configuration @EnableCaching ...
0
votes
0answers
5 views

That implicity disable kernel cache in ASP.NET?

I research kernel cache in IIS 7 and how it work with ASP.NET. I found list of conditions when not use kernel cache http://support.microsoft.com/kb/817445/en-us I found information about disabled ...
2
votes
1answer
39 views

In Node.js/Express, how do I disable browser cache for a redirect?

app.get('/my_profile_picture', function(req,res){ getPicture(req.user.id, function(url){ res.redirect(url); }); }); This is my code. However, when the user changes his profile ...
0
votes
0answers
15 views

How to allow client side (using CDN) caching in gwt

I have developed a commenting front-end module using GWT. I am calling my module by embedding comment.nocache.js in my HTML and I send the required variables by using Javascript vars. I can access ...
0
votes
1answer
29 views

Google Maps Android Api 2 - Mixed TileProvider / URLTileProvider for MapBox implementation

I want to implement a TileProvider with this functionality: Map asks for a Tile TileProvider checks if said Tile is available offline If so, TileProvider returns said Tile Regardless of ...
0
votes
1answer
75 views

Laravel 4: Caching JSON Response

I'm totaly new to Laravel, and i need to cache a JSON response every 60 min. Saw that Laravel offers lots of caching modules: File, Redis, Memcached, APC.. Which one wuold suite best for my need? I've ...
0
votes
0answers
18 views

PHP APC user cache getting cleared automatically

Set up: PHP 5.3 + FastCGI + suExec We've noticed that APC user cache is getting cleared automatically and that too very frequently (within 3-4 minutes). But we are unable to find out the reason. ...
1
vote
1answer
40 views

Remove cache with javascript

So my javascript files are being cached. Originally I just had them in a script tag like so: <script type='text/javascript' src='js/example.js'></script> Now my understanding is that it ...
1
vote
0answers
68 views

How to reduce the cache miss of a computation-intensive program

I wrote a computation-intensive program, and I profiled it with cachegrind, which showed the data cache miss may be the main bottleneck. I adjust(decrease the size of the computation unit to the CPU ...
0
votes
1answer
27 views

Etags in Controller

Every rails etag example I've seen has been very simple with the fresh_when method being called as the last line in the controller. I'm trying to understand how the fresh_when method works for a ...
3
votes
1answer
27 views

Is MemoryCache scope session or application wide?

I'm using MemoryCache in ASP.NET and it is working well. I have an object that is cached for an hour to prevent fresh pulls of data from the repository. I can see the caching working in debug, but ...
0
votes
1answer
27 views

AngularJS: route resolve promise is cached

In the first sample code all works as should - on every page route change we check some conditions ($timeout) and resolve a promise: JSFiddle Var sample code In the second sample we move var ...
0
votes
1answer
61 views

Performance - order by in MySQL or in PHP

I know this has been asked before at least in this thread: is php sort better than mysql "order by"? However, I'm still not sure about the right option here since the performance on doing ...
0
votes
0answers
14 views

How does Amazon.com implement caching of its web pages?

I have been trying to implement caching for my mobile web app. I was trying to reference Amazon.com and tried to read its response headers but was surprised that there is no mention of 'caching' in ...
0
votes
2answers
36 views

App Domain Refresh Solution: AppFabric, how is the performance

We currently are facing problems due to high amount of cached objects. We cache Data from an ERP system (for an Online Shop) and IIS will refresh the webpage as it reaches the maximum amount of memory ...
0
votes
0answers
20 views

HTTP caching in RestSharp (monotouch)

RestSharp (monotouch) seems to disregard the Cache-Control headers replied by the server (for GET calls). Is that the general case, that RestSharp doesn't perform proper HTTP caching? Or have I missed ...
0
votes
1answer
16 views

Storage type for few data?

I'm developing an sms application and i want just a message and a phone number inserted by user to be stored in memory in order to be automatically retrieved the next time the user opens the ...
0
votes
0answers
13 views

Caching parts of webpage using Memcached

I am trying to cache the code for my header which is: $cachedHeader = $this->cache->get('header'); if(!$cachedHeader) { include Vs . "header.php"; $header = file_get_contents(Vs . ...
0
votes
2answers
35 views

PHPExcel memory still exhausted even with cell caching - other solutions

<b>Fatal error</b>: Allowed memory size of 134217728 bytes exhausted (tried to allocate 78 bytes) in ...
0
votes
0answers
8 views

Inconsistent L1 cache and L2 clustered cache for Hibernate

I am trying L2 cluster cache (GemFire) for Hibernate. Is it possible the L1 cache and L2 cluster cache are inconsistent? How to deal with it? For example: The L1 cache at server1 already get a entity, ...
-1
votes
2answers
36 views

Products stopped showing for a couple of hours with Magento [closed]

I've come across a strange issue where over the weekend one of our websites stopped displaying any products when clicking on a product category. One of my collegues tested and was getting the usual ...
-2
votes
1answer
32 views

Memcache that is not TCP-based? [closed]

I recently implemented memcache and memcached to my PHP implementation. None of them are fast enough, since they are based on TCP. It would be nice if there was a solution that stored my data across ...
0
votes
1answer
11 views

Membase logical cache sections

Does membase has a notion of cache sections? such as: Users cache, News cahce, Item cache etc. When I am storing users, I want to be able to store and read from the cache section. Likewise for ...
0
votes
0answers
22 views

ZF2 Doctrine2 Entity Cache

Does somebody know how to cache doctrine2 entities in a zf2 project. I cant find a tutorial or website where this is explained. I cant find any information to start with defining a entity filecache. ...
1
vote
3answers
42 views

Sitecore with DMS vs caching server - how do you handle it?

We're planning to introduce DMS to our customer's Sitecore installation. It's a rather popular site in our country and we have to use proxy caching server (it's Nginx in this case) to make it ...

1 2 3 4 5 246