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
+15-2
Original file line number
Diff line number
Diff line change
@@ -13,9 +13,12 @@ Learn about Reactive Programming in Java (watch the [webinar](https://go.mariadb
13
13
14
14
# Setting up the MariaDB database
15
15
16
-
To run the experiments in this repository, you'll need a MariaDB database running on your machine with the following table:
16
+
To run the experiments in this repository, you'll need a MariaDB database running on your machine with the following database and table:
17
17
18
18
```sql
19
+
CREATEDATABASEreactive;
20
+
USE reactive;
21
+
19
22
CREATETABLE `word` (
20
23
`id`int(11) NOT NULL AUTO_INCREMENT,
21
24
`text`varchar(64) DEFAULT NULL,
@@ -25,7 +28,17 @@ CREATE TABLE `word` (
25
28
26
29
> 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
30
28
-
Insert or import test data into this table as well. Check [this](https://github.com/mariadb-developers/wordle-game-clone) for an example on how to import +370k rows.
31
+
Insert or import test data into this table. For example, download [this CSV file](https://www.kaggle.com/datasets/ruchi798/part-of-speech-tagging) and import it as follows:
0 commit comments