Skip to content

Commit 7717b06

Browse files
committed
Doc updates.
1 parent d940e83 commit 7717b06

File tree

1 file changed

+16
-11
lines changed

1 file changed

+16
-11
lines changed

readme.md

+16-11
Original file line numberDiff line numberDiff line change
@@ -103,8 +103,8 @@ DynamoDB.
103103
It supports Single Table Design, where different model types are stored in a
104104
single DynamoDB table.
105105

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.
108108

109109
Not all DynamoDB functions are available, but DynamoDM is designed to be
110110
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
145145
Schemas, and to the built in schemas.
146146

147147
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.
149149

150150
```js
151151
import DynamoDM from 'dynamodm'
@@ -170,7 +170,8 @@ Options:
170170
object](https://getpino.io/#/docs/api?id=options-object), which will be
171171
used to create a new pino instance. For example `logger:{level:'trace'}`
172172
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.
174175

175176
## Table(tableName, options)
176177
Create a handle to a DynamoDB table. The table stores connection options, model
@@ -207,13 +208,17 @@ Options:
207208

208209
### async Table.ready(options)
209210
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.
211216

212217
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!
217222

218223
### Table.assumeReady()
219224
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
565570
#### static Model fields
566571
Each model class that is created has static fields:
567572
* `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).
570575
* `Model.table`: the table in which this model was created.
571576

572577
For example:

0 commit comments

Comments
 (0)