1. Oracle NoSQL Database Administrator's Guide, Release 23.1: In the "Consistency Guarantees" section, the documentation details various consistency policies that can be specified by the application, such as Consistency.NONEREQUIRED (eventual consistency) and Consistency.ABSOLUTE (strong consistency). This configurability highlights that sacrificing strong consistency is a fundamental design choice to gain other benefits like lower latency. (See Chapter 5: Application Development Concepts -> Consistency Guarantees).
2. Gilbert, S., & Lynch, N. (2002). Brewer's conjecture and the feasibility of consistent, available, partition-tolerant web services. ACM SIGACT News, 33(2), 51–59. This foundational academic paper provides the formal proof of the CAP theorem, which mathematically underpins the trade-off between consistency and availability in distributed systems like NoSQL databases. (DOI: https://doi.org/10.1145/564585.564601).
3. Oracle White Paper: "An Introduction to Oracle NoSQL Database": This document often explains the design philosophy, stating, "Oracle NoSQL Database is designed for massive scale, high availability, and predictable low latency," which are the benefits gained by making flexible trade-offs on the consistency spectrum, a core difference from traditional RDBMS architectures. (Refer to sections on Architecture and Data Consistency Models).