Skip to content

Commit 28c3f32

Browse files
authored
Replaces "Redis Labs" with "Redis". (RedisJSON#457)
Closes RedisJSON#456.
1 parent 90bc4a0 commit 28c3f32

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

docs/index.md

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<img src="images/logo.svg" alt="logo" width="200"/>
22

33
# RedisJSON - a JSON data type for Redis
4-
[![Forum](https://img.shields.io/badge/Forum-RedisJSON-blue)](https://forum.redislabs.com/c/modules/redisjson)
4+
[![Forum](https://img.shields.io/badge/Forum-RedisJSON-blue)](https://forum.redis.com/c/modules/redisjson)
55
[![Discord](https://img.shields.io/discord/697882427875393627?style=flat-square)](https://discord.gg/QUkjSsk)
66

77
RedisJSON is a [Redis](https://redis.io/) module that implements [ECMA-404 The JSON Data Interchange Standard](http://json.org/) as a native data type. It allows storing, updating and fetching JSON values from Redis keys (documents).
@@ -13,7 +13,7 @@ Primary features:
1313
* Documents are stored as binary data in a tree structure, allowing fast access to sub-elements
1414
* Typed atomic operations for all JSON values types
1515

16-
RedisJSON is developed with <3 at [Redis Labs](https://redislabs.com). The source code is available
16+
RedisJSON is developed with <3 at [Redis](https://redis.com). The source code is available
1717
at: [https://github.com/RedisJSON/RedisJSON](https://github.com/RedisJSON/RedisJSON)
1818

1919
## Quickstart
@@ -30,7 +30,7 @@ Alternatively, you can also build and load the module yourself. [Build and Load
3030

3131
RedisJSON is available on all Redis Cloud managed services, including a completely free tier up to 30MB!
3232

33-
[Get started here](https://redislabs.com/redis-enterprise-cloud/pricing/)
33+
[Get started here](https://redis.com/redis-enterprise-cloud/pricing/)
3434

3535
## Launch RedisJSON with Docker
3636
Run the following on Windows, MacOS or Linux with Docker.
@@ -159,7 +159,7 @@ reply = json.loads(r.execute_command('JSON.GET', 'doc'))
159159

160160
## Download and running binaries
161161

162-
First download the pre-compiled version from [RedisLabs download center](https://redislabs.com/download-center/modules/).
162+
First download the pre-compiled version from [Redis download center](https://redis.com/download-center/modules/).
163163

164164
Next, run Redis with RedisJSON:
165165

@@ -230,9 +230,9 @@ Some languages have client libraries that provide support for RedisJSON's comman
230230
| [iorejson][iorejson-url] | Node.js | MIT | [Evan Huang @evanhuang8][iorejson-author] | [![iorejson-stars]][iorejson-url] | [npm][iorejson-package] |
231231
| [node_redis-rejson][node_redis-rejson-url] | Node.js | MIT | [Kyle Davis @stockholmux][node_redis-rejson-author] | [![node_redis-rejson-stars]][node_redis-rejson-url] | [npm][node_redis-rejson-package] |
232232
| [redis-modules-sdk][redis-modules-sdk-url] | Node.js | BSD-3-Clause | [Dani Tseitlin @danitseitlin][redis-modules-sdk-author] | [![redis-modules-sdk-stars]][redis-modules-sdk-url] | [npm][redis-modules-sdk-package] |
233-
| [JRedisJSON][JRedisJSON-url] | Java | BSD-2-Clause | [Redis Labs][JRedisJSON-author] | [![JRedisJSON-stars]][JRedisJSON-url] | [maven][JRedisJSON-package] |
233+
| [JRedisJSON][JRedisJSON-url] | Java | BSD-2-Clause | [Redis][JRedisJSON-author] | [![JRedisJSON-stars]][JRedisJSON-url] | [maven][JRedisJSON-package] |
234234
| [redis-modules-java][redis-modules-java-url] | Java | Apache-2.0 | [Liming Deng @dengliming][redis-modules-java-author] | [![redis-modules-java-stars]][redis-modules-java-url] | [maven][redis-modules-java-package] |
235-
| [redisjson-py][rejson-py-url] | Python | BSD-2-Clause | [Redis Labs][rejson-py-author] | [![rejson-py-stars]][rejson-py-url] | [pypi][rejson-py-package] |
235+
| [redisjson-py][rejson-py-url] | Python | BSD-2-Clause | [Redis][rejson-py-author] | [![rejson-py-stars]][rejson-py-url] | [pypi][rejson-py-package] |
236236
| [go-rejson][go-rejson-url] | Go | MIT | [Nitish Malhotra @nitishm][go-rejson-author] | [![go-rejson-stars]][go-rejson-url] | |
237237
| [rejonson][rejonson-url] | Go | Apache-2.0 | [Daniel Krom @KromDaniel][rejonson-author] | [![rejonson-stars]][rejonson-url] | |
238238
| [NReJSON][NReJSON-url] | .NET | MIT/Apache-2.0 | [Tommy Hanks @tombatron][NReJSON-author] | [![NReJSON-stars]][NReJSON-url] | [nuget][NReJSON-package] |
@@ -255,7 +255,7 @@ Some languages have client libraries that provide support for RedisJSON's comman
255255
[redis-modules-sdk-package]: https://www.npmjs.com/package/redis-modules-sdk
256256
[redis-modules-sdk-stars]: https://img.shields.io/github/stars/danitseitlin/redis-modules-sdk.svg?style=social&amp;label=Star&amp;maxAge=2592000
257257

258-
[JRedisJSON-author]: https://redislabs.com
258+
[JRedisJSON-author]: https://redis.com
259259
[JRedisJSON-url]: https://github.com/RedisJSON/JRedisJSON
260260
[JRedisJSON-package]: https://search.maven.org/artifact/com.redislabs/jrejson/1.2.0/jar
261261
[JRedisJSON-stars]: https://img.shields.io/github/stars/RedisJSON/JRedisJSON.svg?style=social&amp;label=Star&amp;maxAge=2592000
@@ -265,7 +265,7 @@ Some languages have client libraries that provide support for RedisJSON's comman
265265
[redis-modules-java-package]: https://search.maven.org/artifact/io.github.dengliming.redismodule/redis-modules-java/
266266
[redis-modules-java-stars]: https://img.shields.io/github/stars/dengliming/redis-modules-java.svg?style=social&amp;label=Star&amp;maxAge=2592000
267267

268-
[rejson-py-author]: https://redislabs.com
268+
[rejson-py-author]: https://redis.com
269269
[rejson-py-url]: https://github.com/RedisJSON/redisjson-py
270270
[rejson-py-package]: https://pypi.python.org/pypi/rejson
271271
[rejson-py-stars]: https://img.shields.io/github/stars/RedisJSON/redisjson-py.svg?style=social&amp;label=Star&amp;maxAge=2592000

0 commit comments

Comments
 (0)