Skip to main content

Questions tagged [memcached]

1 vote
0 answers
236 views

I have the following Job class representing runs of a job. I have a list of start and end times in Job class because the same Job can be rerun. public class Job { private final List<...
ThinkGeek's user avatar
  • 119
2 votes
1 answer
1k views

I use Memcache to store content lists with very key combinations, when user edited the content, I must refresh the cache, but it is hard to say what particular list to refresh, it is not either a good ...
Yu Jiaao's user avatar
  • 131
7 votes
2 answers
2k views

Just to re-cape cache-aside pattern it defines following steps when fetching and updating data. Fetching Item Return the item from cache if found in it. If not found in cache, read from data store. ...
Ammar's user avatar
  • 171
0 votes
1 answer
1k views

We have a system (ms stack, .net, sql) that receives data from thousands of remote devices (several independent readings/min). We currently save all the data to a db as it arrives and a second service ...
Matt's user avatar
  • 173
14 votes
2 answers
2k views

I'd like to know what would be a better approach to invalidate/update cache objects. Prerequisites Having remote memcached server (serving as cache for multiple applications) All servers are hosted ...
lurkerbelow's user avatar
  • 1,009
0 votes
3 answers
549 views

Given a web application running across 10+ servers, what techniques have you put in place for doing things like altering the state of your website so that you can implement certain features. For ...
Kare Lyse's user avatar
10 votes
2 answers
2k views

I recently read an article on the 37Signals blog and I'm left wondering how it is that they get the cache key. It's all well and good having a cache key that includes the object's timestamp (this ...
Dominic Santos's user avatar