The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
0answers
66 views

Distributed cache - do I have to serialize/externalize the objects

I'm having to code the Serializable or Externalizable implementations for objects to be put in a distributed cache - Oracle Coherence or IBM Xstreme Scale. What happens if we don't do this - and ...
1
vote
1answer
43 views

When to apply corrections on data gathered from a server

I have an program that collects data from other servers. I don’t have access to these servers so I can’t change anything. The servers can give incorrect data, I can solve the problem but I’m a little ...
3
votes
5answers
214 views

Senior team members want to move query-relevant persistent data from DB to cache. Does this make sense?

I am a young engineer recently employed at a small company that sells products to the general public. We use Ruby On Rails and MySQL. Our database has a lot of customer data, but a great deal more of ...
8
votes
6answers
295 views

Best practices for unit testing methods that use cache heavily?

I have a number of business logic methods that store and retrieve (with filtering) objects and lists of objects from cache. Consider IList<TObject> AllFromCache() { ... } TObject ...
7
votes
2answers
263 views

Shared Cache - Invalidation Best Practice

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 ...