Selects availability over freshness. Eventually consistent reads will timeout less often than
Strong reads but will occasionally return stale results.
STRONG
Selects freshness over availability. Strongly consistent reads are guaranteed to return the
most up-to-date data but will timeout more often than eventually consistent reads.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Hard to understand","hardToUnderstand","thumb-down"],["Incorrect information or sample code","incorrectInformationOrSampleCode","thumb-down"],["Missing the information/samples I need","missingTheInformationSamplesINeed","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-05 UTC."],[[["`ReadPolicy.Consistency` is an enum that determines the balance between data freshness and availability during read operations."],["The `EVENTUAL` consistency option prioritizes availability, potentially returning stale data but with fewer timeouts."],["The `STRONG` consistency option prioritizes freshness, guaranteeing up-to-date data but potentially leading to more timeouts."],["The `ReadPolicy.Consistency` enum inherits methods from both the `Enum` and `Object` classes."]]],[]]