File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
DynamoDB
2
2
-----
3
3
The Drupal DynamoDB module provides integration with AWS DynamoDB services.
4
- Current integration provides basic database wrapper for use with DynamoDB.
4
+ Current integration provides a basic database wrapper for use with DynamoDB.
5
5
6
6
# Features
7
7
* DynamoDB table CRUD operations: create, delete, update and list tables
@@ -82,7 +82,7 @@ from DynamoDb. See more details below.
82
82
83
83
** Important**
84
84
Whilst needs of different projects could be different, for that reason billing
85
- and read consistency can be defined trough settings per an
85
+ and read consistency can be defined through settings per an
86
86
instance or per each table. As well, read consistency can be set inside each
87
87
query which you perform if you choose to add ` ConsistencyRead => TRUE `
88
88
inside your query.
@@ -91,10 +91,10 @@ inside your query.
91
91
92
92
### Initialize connection - default instance
93
93
```
94
- # Drupal core Mysql .
94
+ # Drupal core MySQL .
95
95
Drupal::database();
96
96
97
- # DynamoDB - access to DynamoDB trough Drupal wrapper.
97
+ # DynamoDB - access to DynamoDB through Drupal wrapper.
98
98
DynamoDb::database();
99
99
100
100
# DynamoDB - access directly to DynamoDB, without Drupal wrapper.
@@ -103,7 +103,7 @@ DynamoDb::rawDatabase();
103
103
104
104
### Initialize connection - different instance
105
105
```
106
- # Drupal core Mysql .
106
+ # Drupal core MySQL .
107
107
Drupal::database('mysql_replica');
108
108
109
109
# DynamoDB
You can’t perform that action at this time.
0 commit comments