- Coding an object with no member variables requires that every method retrieve the state and store it in local variables.
- Some sort of reference to the state is required.
Once we have the state handle use storage operations to get state.
- Might seem expensive but...
- Prevents long-term caching of state
- All long-term caching is the database's responsibility
|