Caching that's multi-process safe: Difference between revisions

From OPeNDAP Documentation
⧼opendap2-jumptonavigation⧽
(Created page with "== Problem == == Background == == Proposed solution ==")
 
Line 1: Line 1:
== Problem ==
== Problem ==
We have several cases where files need to be cached. These include at least: files that have been decompressed and responses from the web that can be cached using the HTTP/1.1 rules. We need for the caching to be both thread safe and multi-process safe. That is, the cache needs to be shared between processes that do not, otherwise, synchronize their operation.


== Background ==
== Background ==


== Proposed solution ==
== Proposed solution ==

Revision as of 19:51, 21 March 2012

Problem

We have several cases where files need to be cached. These include at least: files that have been decompressed and responses from the web that can be cached using the HTTP/1.1 rules. We need for the caching to be both thread safe and multi-process safe. That is, the cache needs to be shared between processes that do not, otherwise, synchronize their operation.

Background

Proposed solution