In a distributed caching system, how is cache coherence typically maintained?
- Using a consistency protocol like "invalidation"
- By periodically clearing the cache
- Through manual intervention by administrators
- Automatically with a "write-through" strategy
Cache coherence in a distributed caching system is typically maintained using a consistency protocol like "invalidation." This protocol ensures that cached data is invalidated or updated when changes occur, ensuring data consistency across distributed nodes.
Loading...
Related Quiz
- The continue statement in a loop is used to skip the rest of the loop's body and continue with the next ________.
- In Express.js, the ______ object represents the incoming HTTP request.
- In Node.js, which method is used to establish a connection to a MongoDB database?
- In JavaScript, a variable declared without the var, let, or const keyword inside a function becomes a property of the ________ object.
- How are I/O operations, like reading from the file system or network requests, handled by the Event Loop in a non-blocking manner?