You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-7Lines changed: 3 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
##JugglingDB Adapter for DynamoDB version 0.1.9
1
+
##JugglingDB Adapter for DynamoDB version 0.1.9-1
2
2
* Adapter is still in development stage. The stable release will be 0.2.0 and will offer rich functionalities along
3
3
with lots of tests.
4
4
* Always use the latest version of this adapter, preferably >= 0.1.5. The latest version has more features and lots of bug fixes. Versions
@@ -107,7 +107,7 @@ If this file is missing, the adapter will try to read host, port , IDs and key f
107
107
- If tableStatus property is not specified, the adapter automatically checks table status every 1000 ms. To turn this off, specify `waitTillActive` as false.
108
108
109
109
#### Created Event
110
-
- Unlike other adapters, dynamodb adapter creates table when schema.define is called. Since the schema.define function does not accept a callback, listen to the `created` event to check for table creation. The adapter also fires off a secondary `created-modelName` event right after `created`.`modelname` is the model's name in LOWERCASE. The secondary event can be used to resolve ambiguities as to which model was created.
110
+
- Unlike other adapters, dynamodb adapter creates table when schema.define is called. Since the schema.define function does not accept a callback, listen to the `created` event to check for table creation. The adapter also fires off a secondary `created-modelName` event right after `created` where`modelname` is the model's name in LOWERCASE. The secondary event can be used to resolve ambiguities as to which model was created.
111
111
112
112
- Additionally, if checking for table status is enabled, the `created` event is emitted after the table status is `ACTIVE`.
113
113
@@ -131,15 +131,11 @@ If this file is missing, the adapter will try to read host, port , IDs and key f
131
131
```javascript
132
132
// Assume there are 4 models. Check test/relations.test.js for an example.
0 commit comments