PersistenceFacade pattern _________________________
Reveal answer
Fill a bubble to check yourself
PersistenceFacade pattern _________________________
Provides a uniform interface to the subsystem
Assigns the responsibility for creating new class instance or object
Makes a class responsible for materialization
Makes the database mappers responsible for maintaining cache
The PersistenceFacade pattern provides a simplified, unified interface to a complex persistence subsystem, hiding the complexity of various persistence mechanisms behind a single API. Clients interact with the facade rather than directly with individual persistence components. Option A correctly identifies the facade's purpose of providing a uniform interface. Option B describes the Factory pattern or creation responsibilities. Option C refers to materialization patterns. Option D describes caching responsibilities, which are not the facade's primary role.