Skip to content

Commit 6583825

Browse files
author
Simon Prickett
committed
Adds RU204 reference, fixes some redislabs URLs.
1 parent 4b4e0f8 commit 6583825

File tree

10 files changed

+18
-7
lines changed

10 files changed

+18
-7
lines changed

docs/howtos/redisjson/getting-started/index-gettingstarted.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -279,8 +279,9 @@ A JSON object can also have another object. Here is a simple example of a JSON o
279279
"{\"firstName\":\"Alpha\",\"lastName\":\"K\",\"age\":23,\"address\":{\"streetAddress\":\"110 Fulbourn Road Cambridge\",\"city\":\"San Francisco\",\"state\":\"California\",\"postalCode\":\"94016\"}}"
280280
```
281281

282-
### Next Step
282+
### Next Steps
283283

284+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
284285
- [RedisJSON and Python](/howtos/redisjson/using-python)
285286
- [How to store and retrieve nested JSON document](/howtos/redisjson/storing-complex-json-document)
286287
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)

docs/howtos/redisjson/json-using-redisearch/jsonindex-document/index-jsonindex-document.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ RediSearch has been providing indexing and search capabilities on hashes. Under
1414

1515
By exposing its capabilities to other modules, RedisJSON gives RediSearch the ability to index JSON documents so users can now find documents by indexing and querying the content. These combined modules give you a powerful, low latency, JSON-oriented document database!
1616

17-
### Prerequisite:
17+
### Prerequisites:
1818

1919
- Redis 6.x or later
2020
- RediSearch 2.2 or later
@@ -181,6 +181,7 @@ Please Note: It is not possible to index JSON object and JSON arrays.
181181

182182
### References
183183

184+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
184185

185186

186187

docs/howtos/redisjson/jsonind-document/index-jsonind-document.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,8 @@ We can now search in the address:
210210

211211
### References
212212

213-
- [Indexing JSON Document](https://oss.redislabs.com/redisearch/master/Indexing_JSON)
214-
- [Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redislabs.com/blog/index-and-query-json-docs-with-redis/)
213+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
214+
- [Indexing JSON Documents](https://oss.redis.com/redisearch/master/Indexing_JSON/)
215+
- [Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redis.com/blog/index-and-query-json-docs-with-redis/)
215216

216217

docs/howtos/redisjson/storing-complex-json-document/index-storing-complex-json-document.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,7 @@ In case you want to fetch specific filed (like address), then the code would loo
141141

142142
### References
143143

144+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
144145
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)
145146
- Learn more about [RedisJSON](https://oss.redislabs.com/redisjson/) in the Quickstart tutorial.
146147
- [How to store and retrieve nested JSON document](/howtos/redisjson/storing-complex-json-document)

docs/howtos/redisjson/storing-json-using-nodejs/index-storingjson-nodejs.mdx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -434,6 +434,8 @@ If you have the correct JSON path in your code, visiting `http://localhost:80801
434434
- [How to store and retrieve nested JSON document](/howtos/redisjson/storing-complex-json-document)
435435
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)
436436
- Learn more about [RedisJSON](https://oss.redislabs.com/redisjson/) in the Quickstart tutorial.
437+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
438+
437439

438440

439441

docs/howtos/redisjson/using-go/index-usinggo.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,12 +129,13 @@ Follow the below steps to get started with RedisJSON using Go client.
129129
### References
130130

131131
- [Go and Redis](/develop/golang/)
132+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
132133
- [RedisJSON and Python](/howtos/redisjson/using-python)
133134
- [How to store and retrieve nested JSON document](/howtos/redisjson/storing-complex-json-document)
134135
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)
135136
- Learn more about [RedisJSON](https://oss.redislabs.com/redisjson/) in the Quickstart tutorial.
136137
- [How to build shopping cart app using NodeJS and RedisJSON](/howtos/shoppingcart)
137-
- [Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redislabs.com/blog/index-and-query-json-docs-with-redis/)
138+
- [Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redis.com/blog/index-and-query-json-docs-with-redis/)
138139

139140

140141

docs/howtos/redisjson/using-java/index-usingjava.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,7 @@ Use the "clean" command to delete all previously compiled Java .class files and
9696

9797
### References
9898

99+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
99100
- [RedisJSON and Python](/howtos/redisjson/using-python)
100101
- [How to store and retrieve nested JSON document](/howtos/redisjson/storing-complex-json-document)
101102
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)

docs/howtos/redisjson/using-python/index-usingpython.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,8 +138,9 @@ In the above example, the code tries to fetch only the location under the addres
138138

139139
### References
140140

141+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
141142
- [How to cache JSON data in Redis with Python](/howtos/redisjson/using-python)
142143
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)
143-
- Learn more about [RedisJSON](https://oss.redislabs.com/redisjson/) in the Quickstart tutorial.
144+
- Learn more about [RedisJSON](https://redisjson.io) in the Quickstart tutorial.
144145

145146

docs/howtos/redisjson/using-redisinsight/index-usingredisinsight.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,10 @@ Select "employee_profile" to display the JSON data
9292

9393
### References
9494

95+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
9596
- [RedisJSON and Python](/howtos/redisjson/using-python)
9697
- [How to store and retrieve nested JSON document](/howtos/redisjson/storing-complex-json-document)
9798
- [Importing JSON data into Redis using NodeJS](/howtos/redisjson/using-nodejs)
9899
- Learn more about [RedisJSON](https://oss.redislabs.com/redisjson/) in the Quickstart tutorial.
99100
- [How to build shopping cart app using NodeJS and RedisJSON](/howtos/shoppingcart)
100-
- [Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redislabs.com/blog/index-and-query-json-docs-with-redis/)
101+
- [Indexing, Querying, and Full-Text Search of JSON Documents with Redis](https://redis.com/blog/index-and-query-json-docs-with-redis/)

docs/howtos/redisjson/using-ruby/index-usingruby.mdx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ You can verify what's happening in the background by running the monitor command
7676

7777
### References
7878

79+
- [RU204: Storing, Querying and Indexing JSON at Speed](https://university.redis.com/courses/ru204/) - a course at Redis University
7980
- [Rate Limiting app in Ruby and Redis](/howtos/ratelimiting/)
8081
- [Ruby and Redis](/develop/ruby/)
8182

0 commit comments

Comments
 (0)