Tagged Questions

1
vote
9answers
107 views

C++ design: How to cache most recent used

Hi We have a C++ application for which we try to improve performance. We identified that data retrieval takes a lot of time, and want to cache data. We can't store all data in memory as it is huge. We …
2
votes
2answers
36 views

Efficient Ruby LRU cache

What's the most efficient way to build a cache with arbitrary Ruby objects as keys that are expired based on a least recently used algorithm. It should use Ruby's normal hashing semantics (not equal?) …
0
votes
1answer
31 views

what will happen if not lock the dictionary when i modify it? about asp.net cache

sorry i have many questions about the lock/cache.=_=.. ->1. about cache, i know that the cache in asp.net is threadsafe, the simple code i usually use is IList<User> user= …
0
votes
2answers
49 views

Google App Engine - Caching generated HTML

I have written a Google App Engine application that programatically generates a bunch of HTML code that is really the same output for each user who logs into my system, and I know that this is going …
0
votes
4answers
58 views

How to remove the browser cache?

I have one image website where users can vote images. IMAGES ARE RANDOMLY GENERATED ON FIRST PAGE! Once they vote they're redirected using window.location to the image details page. If they click back …
9
votes
6answers
240 views

C++ cache aware programming

Hi! 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 …
0
votes
0answers
34 views

Very fast cache / access time-indexed data in c#

Hello there, I'm coding a data intensive app in c#. Currently, the app loads loads and loads of timeseries from a distant sql server, does a lot of calculation to create other timeseries, and I'd …
1
vote
7answers
83 views

Force browser to clear cache

Is there a way I can put some code on my page so when someone visits a site, it clears the browser cache, so they can view the changes? Languages used: ASP.NET, VB.NET, and of course html, css, and …
0
votes
1answer
49 views

C# force page load on browser back click

I'd like to know how I can detect that the back button is clicked from the browser. I have the following situation. On my website I have a search form. When you perform two search actions and then …
1
vote
2answers
25 views

Stateless session bean result caching ?

We're running a Stateless Session Bean to retrieve some data from various locations. What's the best way to achieve caching for this SLSB ? Using interceptors ? Using JBossCache ? We're using JBoss …
0
votes
0answers
12 views

Need advise about detect cache Image on Iphone

now i implement download image function so how did i know that image is already load and get it from memory?
0
votes
1answer
23 views

HTML <meta> tag and squid

Does the HTML tag: <META http-equiv="Cache-Control" content="no-cache"> <META http-equiv="expires" content="0"> <META http-equiv="Pragma" content="no-cache"> also instruct squid …
0
votes
1answer
27 views

How to force fragment cache on rails from cron schedule?

Is there any way I can trigger a page to be fragment cached without having someone to load the page the first time? I am planning to use cron schedule, this is because my cron scheduler updates the …
0
votes
3answers
34 views

Best practicies on cache implementation

I would need to implement cache, which would need to perform SQL queries and cache results. So, I would love to read something about best practices of doing that; how do properly, staling cache …
0
votes
2answers
46 views

How to cache user’s profile info (update when profile changed)?

I have a UserInfo object that is generated on each page_prerender event. This object is generated from the db and contains general info and permissions info. Since this object is always the same for …

1 2 3 4 5 48 next
15 30 50 per page