Skip to content

Commit 3b5ed15

Browse files
authored
Update README.md
1 parent 433d6da commit 3b5ed15

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

README.md

+14
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,20 @@ Learn about Reactive Programming in Java (watch the [webinar](https://go.mariadb
1111
- **Compare throughput** using [Artillery](https://www.artillery.io/). See how many HTTP 200 OK responses you get on
1212
each service (test scripts included on each service project).
1313

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+
CREATE TABLE `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+
1428
## Support and Contribution
1529

1630
Please feel free to submit PR's, issues or requests to this project

0 commit comments

Comments
 (0)