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.adoc
+22-20Lines changed: 22 additions & 20 deletions
Original file line number
Diff line number
Diff line change
@@ -5,19 +5,31 @@ Redis Input/Output Tool (RIOT) is a data import/export tool for Redis and Redis
5
5
6
6
== Input Sources
7
7
8
-
RIOT supports multiple input sources.
8
+
* Databases (JDBC)
9
+
* Files
10
+
** Delimited (CSV)
11
+
** Fixed-width
12
+
** JSON
13
+
* Generator
14
+
** Simple (sequence)
15
+
** https://github.com/stympy/faker[Faker] data
9
16
10
-
=== Databases
11
-
Databases are supported through JDBC. Add the appropriate driver jar for your database under the `lib` directory, e.g. for MySQL: `lib/mysql-connector-java-5.1.47.jar`
17
+
== Installation
18
+
Download the https://github.com/Redislabs-Solution-Architects/riot/releases/latest[latest RIOT distribution] (zip or tar.gz) and unpack the downloaded archive.
19
+
20
+
== Running
21
+
Use the `riot` script (`riot.bat` for Windows) to launch RIOT.
12
22
13
-
=== Files
14
-
RIOT supports the following file formats:
23
+
== Usage
24
+
Follow the usage help provided with the `--help` option.
25
+
26
+
=== Databases
15
27
16
-
==== Delimited (CSV)
28
+
WARNING: Add the appropriate driver jar for your database under the `lib` directory
17
29
18
-
==== Fixed-width
30
+
For example with MySQL: `lib/mysql-connector-java-5.1.47.jar`
19
31
20
-
==== JSON
32
+
=== JSON
21
33
RIOT can read JSON data from a file with the following format:
22
34
[source,json]
23
35
----
@@ -32,23 +44,13 @@ RIOT can read JSON data from a file with the following format:
32
44
----
33
45
34
46
=== Generator
35
-
RIOT can also import generated data.
36
47
37
-
==== Simple Generator
48
+
==== Simple
38
49
The simple data generator generates entries with a single field named `field` which is a sequence of integers.
39
50
40
-
==== Faker Generator
51
+
==== Faker
41
52
This data generator relies on the https://github.com/DiUS/java-faker[Faker] library.
42
53
43
-
== Installation
44
-
Download the https://github.com/Redislabs-Solution-Architects/riot/releases/latest[latest RIOT distribution] (zip or tar.gz) and unpack the downloaded archive.
45
-
46
-
== Running
47
-
Use the `riot` script (`riot.bat` for Windows) to launch RIOT.
48
-
49
-
== Usage
50
-
Follow the usage help provided with the `--help` option.
0 commit comments