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
+14
Original file line number
Diff line number
Diff line change
@@ -11,6 +11,20 @@ Learn about Reactive Programming in Java (watch the [webinar](https://go.mariadb
11
11
-**Compare throughput** using [Artillery](https://www.artillery.io/). See how many HTTP 200 OK responses you get on
12
12
each service (test scripts included on each service project).
13
13
14
+
# Setting up the MariaDB database
15
+
16
+
To run the experiments in this repository, you'll need a MariaDB database running on your machine with the following table:
17
+
18
+
```sql
19
+
CREATETABLE `word` (
20
+
`id`int(11) NOT NULL AUTO_INCREMENT,
21
+
`text`varchar(64) DEFAULT NULL,
22
+
PRIMARY KEY (`id`)
23
+
) ENGINE=Aria;
24
+
```
25
+
26
+
> Note: Aria is a storage engine for read-heavy workoads, but it has some limitations. See [this blog post](https://mariadb.com/resources/blog/storage-engine-choice-aria/).
27
+
14
28
## Support and Contribution
15
29
16
30
Please feel free to submit PR's, issues or requests to this project
0 commit comments