28
votes
15answers
4k 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 …
14
votes
2answers
1k 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 …
13
votes
3answers
1k 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 …
13
votes
7answers
861 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 - …
13
votes
4answers
3k 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.
…
11
votes
4answers
650 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?
10
votes
4answers
251 views
How do sites like LinkedIn efficiently display 1st/2nd/3rd-level relationship next to each person’s name?
I recently botched a job interview by poorly answering a straightforward question: how do sites like LinkedIn efficiently show the relationship distance (1st/2nd/3rd) from you to every person …
9
votes
8answers
233 views
Is it worth mitigating against the effects of garbage collection?
I have an application where the memory profile looks something like this:
The slow upwards crawl of memory usage is caused by the allocation of lots and lots of small, simple, transient objects. In …
9
votes
6answers
1k views
Fastest way to loop through a 2d array?
Hey folks,
I just stumbled upon this blog post. The author shows two code samples that loop through a rectangle and compute something (my guess is the computing code is just a placeholder). On one of …
9
votes
4answers
255 views
“Warm Up Cache” on deployment
I am wondering if anyone has any plugins or capistrano recipes that will "pre-heat" the page cache for a rails app by building all of the page cached html at the time the deployment is made, or …
9
votes
6answers
892 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 …
9
votes
5answers
2k 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 …
8
votes
6answers
270 views
Caching architecture for search results in an ASP.NET application
What is a good design for caching the results of an expensive search in an ASP.NET system?
Any ideas would be welcomed ... particularly those that don't require inventing a complex infrastructure of …
8
votes
6answers
484 views
What is a data structure kind of like a hash table, but infrequently-used keys are deleted?
I am looking for a data structure that operates similar to a hash table, but where the table has a size limit. When the number of items in the hash reaches the size limit, a culling function should …
8
votes
5answers
3k 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 …
