@@ -103,8 +103,8 @@ DynamoDB.
103
103
It supports Single Table Design, where different model types are stored in a
104
104
single DynamoDB table.
105
105
106
- The table hash key is used as a unique id for each document , ensuring documents
107
- are always evenly spread across all partitions.
106
+ Each document has a unique ID which is used as the table hash key , ensuring
107
+ documents are always evenly spread across all partitions.
108
108
109
109
Not all DynamoDB functions are available, but DynamoDM is designed to be
110
110
efficient, and make it easy to write apps that make the most of DynamoDB's
@@ -145,7 +145,7 @@ default options (including logging), and provides access to create Tables and
145
145
Schemas, and to the built in schemas.
146
146
147
147
Schemas from one DynamoDM instance can be used with tables from another. Aside
148
- from default options, all state is stored within Table instances .
148
+ from default options no state is stored in the API instance .
149
149
150
150
``` js
151
151
import DynamoDM from ' dynamodm'
@@ -170,7 +170,8 @@ Options:
170
170
object] ( https://getpino.io/#/docs/api?id=options-object ) , which will be
171
171
used to create a new pino instance. For example ` logger:{level:'trace'} `
172
172
to enable trace-level logging.
173
- * ... all other options supported by [ .Table] ( #table-tablename-options ) or [ .Schema] ( #schemaname-jsonschema-options ) .
173
+ * ... all other options supported by [ .Table] ( #table-tablename-options ) or
174
+ [ .Schema] ( #schemaname-jsonschema-options ) , which will be used as defaults.
174
175
175
176
## Table(tableName, options)
176
177
Create a handle to a DynamoDB table. The table stores connection options, model
@@ -207,13 +208,17 @@ Options:
207
208
208
209
### async Table.ready(options)
209
210
Wait for the table to be ready. The current state of the table is queried and
210
- it is created if necessary.
211
+ it is created if necessary.
212
+
213
+ If the table is missing required indexes then the creation of a missing index
214
+ will be started (but not waited on). To create and wait for all missing
215
+ indexes, use the ` waitForIndexes ` option.
211
216
212
217
Options:
213
- * ` waitForIndexes ` : if true then any missing indexes that are required
214
- will also be created. This may take a long time, especially if indexes are
215
- being created that must be back-filled with existing data. Recommended for
216
- convenience during development only!
218
+ * ` waitForIndexes ` : if true then all missing indexes required by schemas in
219
+ this table will also be created. This may take a long time, especially if
220
+ indexes are being created that must be back-filled with existing data.
221
+ Recommended for convenience during development only!
217
222
218
223
### Table.assumeReady()
219
224
Check the basic compatibility of the models in this table, and assume it has
@@ -565,8 +570,8 @@ Models are created by calling [table.model()](#tablemodelschema) with a
565
570
#### static Model fields
566
571
Each model class that is created has static fields:
567
572
* ` Model.type` : The name of the schema that was used to create this model
568
- (which is the same as value of the built in type field for documents of this
569
- model type).
573
+ (which is the same as the value of the built in type field for documents of
574
+ this model type).
570
575
* ` Model.table` : the table in which this model was created.
571
576
572
577
For example:
0 commit comments