Skip to content

Commit 16164bf

Browse files
author
Julien Ruaux
committed
docs: Removed backslash in redis-cli example
1 parent a2594ef commit 16164bf

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

README.adoc

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,7 @@ docker exec -it redis /opt/redis-stack/bin/redis-cli
7777
Next, create an index on the beer data. While still in the Redis CLI, you can create the required index by running the following `FT.CREATE` command:
7878
[source,console]
7979
----
80-
127.0.0.1:6379> FT.CREATE beers ON HASH PREFIX 1 beer: SCHEMA id TAG SORTABLE \
81-
brewery_id TAG SORTABLE name TEXT SORTABLE abv NUMERIC SORTABLE descript TEXT \
82-
style_name TAG SORTABLE cat_name TAG SORTABLE
80+
127.0.0.1:6379> FT.CREATE beers ON HASH PREFIX 1 beer: SCHEMA id TAG SORTABLE brewery_id TAG SORTABLE name TEXT SORTABLE abv NUMERIC SORTABLE descript TEXT style_name TAG SORTABLE cat_name TAG SORTABLE
8381
----
8482

8583
Now that you've indexed the data set, you can query it using SQL statements through Trino. Start the Trino CLI:

0 commit comments

Comments
 (0)