Replication

The Problem


We need to cache objects to be scalable
Caches are just used on reads
They provide efficiency and some fault-tolerance
We can cache on access, copying the object
What about objects referenced by the copied object?
We could copy recursively, but it is probably a bad idea
Better to copy them as remote references

- 30 -