-
Notifications
You must be signed in to change notification settings - Fork 886
Expand file tree
/
Copy pathmkdocs.yml
More file actions
177 lines (171 loc) · 7.36 KB
/
mkdocs.yml
File metadata and controls
177 lines (171 loc) · 7.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
site_name: Java Driver for Apache Cassandra
site_description: Java Driver for Apache Cassandra® Documentation
site_url: https://apache.github.io/cassandra-java-driver
repo_url: https://github.com/apache/cassandra-java-driver
repo_name: apache/cassandra-java-driver
docs_dir: mkdocs
site_dir: docs
theme:
name: material
logo: faq/logo.png
favicon: faq/favicon.ico
features:
- navigation.tabs
- navigation.top
- navigation.path
- search.highlight
- search.share
markdown_extensions:
- admonition
- codehilite
- pymdownx.superfences
- pymdownx.tabbed
- toc:
toc_depth: 2-3
permalink: true
nav:
- Home: README.md
- Manual:
- Overview: manual/README.md
- API Conventions: manual/api_conventions/README.md
- Case Sensitivity: manual/case_sensitivity/README.md
- Cloud: manual/cloud/README.md
- Core:
- Overview: manual/core/README.md
- Integration: manual/core/integration/README.md
- Configuration:
- Overview: manual/core/configuration/README.md
- Reference: manual/core/configuration/reference/README.md
- Connection Management:
- Authentication: manual/core/authentication/README.md
- SSL: manual/core/ssl/README.md
- Pooling: manual/core/pooling/README.md
- Load Balancing: manual/core/load_balancing/README.md
- Reconnection: manual/core/reconnection/README.md
- Address Resolution: manual/core/address_resolution/README.md
- Statements:
- Overview: manual/core/statements/README.md
- Batch: manual/core/statements/batch/README.md
- Per Query Keyspace: manual/core/statements/per_query_keyspace/README.md
- Prepared: manual/core/statements/prepared/README.md
- Simple: manual/core/statements/simple/README.md
- Query Execution:
- Retries: manual/core/retries/README.md
- Idempotence: manual/core/idempotence/README.md
- Speculative Execution: manual/core/speculative_execution/README.md
- Paging: manual/core/paging/README.md
- Query Timestamps: manual/core/query_timestamps/README.md
- Advanced Types:
- Custom Codecs: manual/core/custom_codecs/README.md
- Temporal Types: manual/core/temporal_types/README.md
- Tuples: manual/core/tuples/README.md
- UDTs: manual/core/udts/README.md
- Detachable Types: manual/core/detachable_types/README.md
- Non-blocking:
- Overview: manual/core/non_blocking/README.md
- Async Programming: manual/core/async/README.md
- Reactive Streams: manual/core/reactive/README.md
- Observability:
- Request Tracker: manual/core/request_tracker/README.md
- Request ID: manual/core/request_id/README.md
- Metrics: manual/core/metrics/README.md
- Logging: manual/core/logging/README.md
- Tracing: manual/core/tracing/README.md
- Performance:
- Overview: manual/core/performance/README.md
- Throttling: manual/core/throttling/README.md
- Compression: manual/core/compression/README.md
- Metadata:
- Overview: manual/core/metadata/README.md
- Node: manual/core/metadata/node/README.md
- Schema: manual/core/metadata/schema/README.md
- Token: manual/core/metadata/token/README.md
- Driver Internals:
- Control Connection: manual/core/control_connection/README.md
- Native Protocol: manual/core/native_protocol/README.md
- DataStax DSE:
- Overview: manual/core/dse/README.md
- Geotypes: manual/core/dse/geotypes/README.md
- Graph:
- Overview: manual/core/dse/graph/README.md
- Fluent:
- Overview: manual/core/dse/graph/fluent/README.md
- Explicit: manual/core/dse/graph/fluent/explicit/README.md
- Implicit: manual/core/dse/graph/fluent/implicit/README.md
- Options: manual/core/dse/graph/options/README.md
- Results: manual/core/dse/graph/results/README.md
- Script: manual/core/dse/graph/script/README.md
- GraalVM: manual/core/graalvm/README.md
- Shaded JAR: manual/core/shaded_jar/README.md
- BOM: manual/core/bom/README.md
- Query Builder:
- Overview: manual/query_builder/README.md
- Select: manual/query_builder/select/README.md
- Insert: manual/query_builder/insert/README.md
- Update: manual/query_builder/update/README.md
- Delete: manual/query_builder/delete/README.md
- Schema:
- Overview: manual/query_builder/schema/README.md
- Aggregate: manual/query_builder/schema/aggregate/README.md
- Function: manual/query_builder/schema/function/README.md
- Index: manual/query_builder/schema/index/README.md
- Keyspace: manual/query_builder/schema/keyspace/README.md
- Materialized View: manual/query_builder/schema/materialized_view/README.md
- Table: manual/query_builder/schema/table/README.md
- Type: manual/query_builder/schema/type/README.md
- Truncate: manual/query_builder/truncate/README.md
- Condition: manual/query_builder/condition/README.md
- Relation: manual/query_builder/relation/README.md
- Term: manual/query_builder/term/README.md
- Idempotence: manual/query_builder/idempotence/README.md
- Mapper:
- Overview: manual/mapper/README.md
- Entities: manual/mapper/entities/README.md
- DAOs:
- Overview: manual/mapper/daos/README.md
- Custom Types: manual/mapper/daos/custom_types/README.md
- Delete: manual/mapper/daos/delete/README.md
- Get Entity: manual/mapper/daos/getentity/README.md
- Increment: manual/mapper/daos/increment/README.md
- Insert: manual/mapper/daos/insert/README.md
- Null Saving: manual/mapper/daos/null_saving/README.md
- Query: manual/mapper/daos/query/README.md
- Query Provider: manual/mapper/daos/queryprovider/README.md
- Select: manual/mapper/daos/select/README.md
- Set Entity: manual/mapper/daos/setentity/README.md
- Statement Attributes: manual/mapper/daos/statement_attributes/README.md
- Update: manual/mapper/daos/update/README.md
- Mapper: manual/mapper/mapper/README.md
- Configuration:
- Overview: manual/mapper/config/README.md
- Kotlin: manual/mapper/config/kotlin/README.md
- Lombok: manual/mapper/config/lombok/README.md
- Record: manual/mapper/config/record/README.md
- Scala: manual/mapper/config/scala/README.md
- Developer:
- Overview: manual/developer/README.md
- Common:
- Overview: manual/developer/common/README.md
- Concurrency: manual/developer/common/concurrency/README.md
- Context: manual/developer/common/context/README.md
- Event Bus: manual/developer/common/event_bus/README.md
- Native Protocol: manual/developer/native_protocol/README.md
- Netty Pipeline: manual/developer/netty_pipeline/README.md
- Request Execution: manual/developer/request_execution/README.md
- Admin: manual/developer/admin/README.md
- OSGi: manual/osgi/README.md
- API References: api/index.html
- FAQ: faq/README.md
- Changelog: changelog/README.md
- Upgrade Guide: upgrade_guide/README.md
- Contribute: CONTRIBUTING.md
plugins:
- search
- awesome-pages
- macros
- mike:
alias_type: copy
extra:
generator: false
version:
provider: mike