Transparently store data to improve response time

learn more… | top users | synonyms (3)

1000
votes
6answers
45k views

Flash CS4 refuses to let go

I have a Flash project, and it has many source files. I have a fairly heavily-used class, call it Jenine. I recently (and, perhaps, callously) relocated Jenine from one namespace to another. I thought ...
124
votes
20answers
29k views

What is an elegant way to force browsers to reload cached CSS/JS files?

I have noticed that some browsers (in particular, Firefox and Opera) are very zealous in using cached copies of .css and .js files, even between browser sessions. This leads to a problem when you ...
87
votes
8answers
99k views

What requests do browsers' “F5” and “Ctrl + F5” refreshes generate?

Is there a standard for what actions F5 and Ctrl+F5 trigger in web browsers? I once did experiment in IE6 and Firefox 2.x. The "F5" refresh would trigger a HTTP request sent to the server with an ...
65
votes
2answers
13k views

Dispelling the UIImage imageNamed: FUD

I see a lot of people saying imageNamed is bad but equal numbers of people saying the performance is good - especially when rendering UITableViews. See this SO question for example or this article on ...
62
votes
9answers
36k views

Stop jQuery .load response from being cached

I have the following code making a GET request on a URL: $('#searchButton').click(function() { $('#inquiry').load('/portal/?f=searchBilling&pid=' + $('#query').val()); }); But ...
45
votes
5answers
2k views

Why doesn't the JVM cache JIT compiled code?

The canonical JVM implementation from Sun applies some pretty sophisticated optimization to bytecode to obtain near-native execution speeds after the code has been run a few times. The question is, ...
44
votes
15answers
12k views

Making sure a web page is not cached, across all browsers

Our investigations have shown us that not all browsers respect the http cache directives in a uniform manner. For security reasons we do not want certain pages in our application to cached, ever, by ...
40
votes
3answers
1k views

How to cache in a Blackberry BrowserField

I am creating a Blackberry application to display a full screen web view of a certain site. I have a working browserfield that displays properly but navigation from page to page is slower than that of ...
39
votes
5answers
19k views

Caching in asp.net-mvc

I would like to cache my most database heavy actions in my asp.net-mvc site. In my research I have found donut caching on Phil's blog Caching/compressing filters on Kazi's blog Scott Hansleman's ...
38
votes
7answers
26k views

What's the difference between Cache-Control: max-age=0 and no-cache?

max-age=0 implies that the content is considered stale (and must be re-fetched) immediately, which is in effect the same thing as no-cache. Google has failed to solve this mystery for me :(
38
votes
3answers
17k views

Memcached vs APC which one should I choose?

I ready this article: http://www.mysqlperformanceblog.com/2006/09/27/apc-or-memcached/ from way back when.. I want to get the best cacheing engine available so that my application is really fast. Of ...
37
votes
3answers
9k views

Read whole ASCII file into C++ std::string

I need to read a whole file into memory and place it in a C++ std::string. If I were to read it into a char, the answer would be very simple: std::ifstream t; int lenght; t.open("file.txt"); // ...
37
votes
4answers
758 views

Is something wrong with the dynamic keyword in C# 4.0?

There is some strange behavior with the C# 4.0 dynamic usage: using System; class Program { public void Baz() { Console.WriteLine("Baz1"); } static void CallBaz(dynamic x) { x.Baz(); } static ...
36
votes
6answers
12k views

How to cache data in a MVC application

I have read lots of information about page caching and partial page caching in a MVC application. However, I would like to know how you would cache data. In my scenario I will be using LINQ to ...
36
votes
11answers
16k views

How can I force clients to refresh JavaScript files?

We are currently working in a private beta and so are still in the process of making fairly rapid changes, although obviously as usage is starting to ramp up, we will be slowing down this process. ...
35
votes
9answers
851 views

Best practice to record large amount of hits into MySQL database

Well, this is the thing. Let's say that my future PHP CMS need to drive 500k visitors daily and I need to record them all in MySQL database (referrer, ip address, time etc.). This way I need to insert ...
35
votes
9answers
22k views

Android image caching

How can I cache images after they are downloaded from web?
33
votes
6answers
9k views

Programmatically get the cache line size?

Just want to document the answer to this specific question... a similar question (with potential answers was asked here) All platforms welcome, please specify the platform for your answer.
31
votes
7answers
3k views

Which PHP opcode cacher should I use to improve performance?

I'm trying to improve performance under high load and would like to implement opcode caching. Which of the following should I use? APC - Installation Guide eAccelerator - Installation Guide XCache - ...
30
votes
3answers
12k views

What is the “Temporary ASP.NET Files” folder for?

I've discovered this folder in C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files and have a few questions. What does ASP.NET use this folder for and what sort of files are stored ...
29
votes
7answers
7k views

Lightweight Java Object cache API

Question I'm looking for a Java in-memory object caching API. Any recommendations? What solutions have you used in the past? Current Right now, I'm just using a Map: Map cache = new ...
28
votes
3answers
6k views

MS Velocity vs Memcached for Windows?

I've been paying some attention to Microsoft's fairly recent promoting of Velocity as a distributed caching solution that would compete with the likes of Memcached. I've been looking for a 64bit ...
28
votes
10answers
29k views

Turn off caching for JavaScript files on Firefox

During development I have to "clear cache" in Firefox all the time in order to make it use the latest version of JavaScript files. Is there some kind of setting (about:config) to turn off caching ...
27
votes
13answers
5k views

How does one write code that best utilizes the CPU cache to improve performance?

This could sound a subjective question, but what i am looking for is specific instances which you would have encountered related to this. How to make a code, cache effective-cache friendly? (More ...
27
votes
16answers
5k views

RAMDrive for compiling - is there such a thing?

An answer (see below) to one of the question right here on SO gave me an idea for a great little piece of software that could be invaluable to coders everywhere. I'm imagining a RAMDrive software, ...
27
votes
6answers
22k views

How to force a web browser NOT to cache images

Background I am writing and using a very simple CGI-based (Perl) content management tool for two pro-bono websites. It provides the website administrator with HTML forms for events where they fill ...
26
votes
5answers
20k views

How to clear APC cache entries?

I need to clear all APC cache entries when I deploy a new version of the site. APC.php has a button for clearing all opcode caches, but I don't see buttons for clearing all User Entries, or all System ...
26
votes
4answers
7k views

Which .NET Memcached client do you use, EnyimMemcached vs. BeITMemcached?

Seems like both EnyimMemcached (http://memcached.enyim.com/) and BeITMemcached (http://code.google.com/p/beitmemcached/) are popular .NET Memcached libraries. Both are reasonably active projects under ...
26
votes
6answers
8k views

What is the best way to lock cache in asp.net?

I know in certain circumstances, such as long running processes, it is important to lock ASP.NET cache in order to avoid subsequent requests by another user for that resource from executing the long ...
26
votes
4answers
9k views

System.Web.Caching vs. Enterprise Library Caching Block

For a .NET component that will be used in both web applications and rich client applications, there seem to be two obvious options for caching: System.Web.Caching or the Ent. Lib. Caching Block. ...
24
votes
4answers
10k views

IIS7 Cache-Control

I'm trying to do something which I thought would be fairly simple. Get IIS 7 to tell clients they can cache all images on my site for a certain amount of time, let's say 24 hours. I have tried the ...
23
votes
3answers
1k views

Thread-safe cache libraries for .NET

Background: I maintain several Winforms apps and class libraries that either could or already do benefit from caching. I'm also aware of the Caching Application Block and the System.Web.Caching ...
22
votes
5answers
10k views

How to properly invalidate an HTML5 Cache Manifest for online/offline web apps?

I'm currently using a Cache Manifest (as described here). This effectively makes the necessary resources to run the application available when the user is offline. Unfortunately, it works a little ...
22
votes
3answers
13k views

Add Expires or Cache Control Header to static content in IIS

After running the YSlow plugin on a site, I saw that one of the recommendations was to add far future expires headers to the scripts, stylesheets, and images. I would like to do this, does anyone ...
21
votes
9answers
3k views

C++ cache aware programming

is there a way in C++ to determine the CPU's cache size? i have an algorithm that processes a lot of data and i'd like to break this data down into chunks such that they fit into the cache. Is this ...
21
votes
9answers
5k views

What is the Cost of an L1 Cache Miss?

Edit: For reference purposes (if anyone stumbles across this question), Igor Ostrovsky wrote a great post about cache misses. It discusses several different issues and shows example numbers. End ...
21
votes
6answers
8k views

How do you implement caching in Linq to SQL?

We've just started using LINQ to SQL at work for our DAL & we haven't really come up with a standard for out caching model. Previously we had being using a base 'DAL' class that implemented a ...
20
votes
3answers
6k views

Force IE8 *not* to use Compatibility View

Just updated my site to newer, much more standards compliant design. My previous design was so rubbish that I had to use the IE=EmulateIE tag to force IE7 emulation. Unfortunately, I believe that ...
20
votes
1answer
3k views

Set up caching on entities and relationships in Fluent Nhibernate?

Do anyone have have an example how to set up and what entities to cache in fluent nhibernate. Both using fluent mapping and auto mapping? And the same for entity relationships, both one to many and ...
19
votes
3answers
2k views

.Net 4 MemoryCache Leaks with Concurrent Garbage Collection

I'm using the new MemoryCache in .Net 4, with a max cache size limit in MB (I've tested it set between 10 and 200MB, on systems with between 1.75 and 8GB of memory). I don't set any time based ...
19
votes
5answers
330 views

Hashing a python function to regenerate output when the function is modified

I have a python function that has a deterministic result. It takes a long time to run and generates a large output: def time_consuming_function(): # lots_of_computing_time to come up with ...
19
votes
5answers
9k views

How to prevent browser page caching in Rails

Ubuntu -> Apache -> Phusion Passenger -> Rails 2.3 The main part of my site reacts to your clicks. So, if you click on a link, it will send you on to the destination, and instantly regenerate your ...
19
votes
3answers
14k views

When Does Browser Automatically Clear JavaScript Cache?

I have a JavaScript resource that has the possibility of being edited at any time. Once it is edited I would want it to be propagated to the user's browser relatively quickly (like maybe 15 minutes or ...
19
votes
8answers
3k views

Is it OK to use HttpRuntime.Cache outside ASP.NET applications?

Scott Hanselman says yes. Adding System.Web to your non-web project is a good way to get folks to panic. Another is adding a reference to Microsoft.VisualBasic in a C# application. Both are ...
19
votes
16answers
2k views

Is there a way to keep a page from rendering once a person has logged out but hit the “back” button?

I have some website which requires a logon and shows sensitive information. The person goes to the page, is prompted to log in, then gets to see the information. The person logs out of the site, and ...
18
votes
5answers
206 views

PHP website Optimization

I have a high traffic website and I need make sure my site is fast enough to display my pages to everyone rapidly. I searched on Google many articles about speed and optimization and here's what I ...
18
votes
3answers
13k views

Warning: require_once() [function.require-once]: Unable to allocate memory for pool. in /path/to/file

I've occasionally run up against a server's memory allocation limit, particularly with a bloated application like Wordpress, but never encountered "Unable to allocate memory for pool" and having ...
18
votes
4answers
2k views

How does the ASP.NET Cache work?

I am interested in using the ASP.NET Cache to decrease load times. How do I go about this? Where do I start? And how exactly does caching work?
18
votes
5answers
4k views

Django Sessions

I'm looking at sessions in Django, and by default they are stored in the database. What are the benefits of filesystem and cache sessions and when should I use them?
17
votes
3answers
666 views

my ideal cache using guava

Off and on for the past few weeks I've been trying to find my ideal cache implementation using guava's MapMaker. See my previous two questions here and here to follow my thought process. Taking what ...

1 2 3 4 5 143