Skip to content

EarlywormTeam/RedisJSON

This branch is 253 commits behind RedisJSON/RedisJSON:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

23b0784 · Mar 29, 2023
Apr 19, 2021
Mar 20, 2023
Feb 28, 2023
Apr 24, 2022
Feb 24, 2023
Mar 22, 2023
Mar 20, 2023
Oct 9, 2022
Nov 15, 2022
Feb 23, 2023
Mar 29, 2023
Mar 20, 2023
Dec 11, 2020
Nov 23, 2021
Aug 16, 2022
Mar 10, 2021
Mar 22, 2023
Feb 28, 2023
Oct 25, 2022
Nov 15, 2022
Jan 31, 2023
Jan 3, 2023
Aug 16, 2022
Feb 28, 2023
Feb 28, 2023
Jan 24, 2023

Repository files navigation

GitHub issues CircleCI macos Dockerhub Codecov

RedisJSON

Forum Discord

RedisJSON is a Redis module that implements ECMA-404 The JSON Data Interchange Standard as a native data type. It allows storing, updating and fetching JSON values from Redis keys (documents).

Primary features:

  • Full support of the JSON standard
  • JSONPath syntax for selecting elements inside documents
  • Documents are stored as binary data in a tree structure, allowing fast access to sub-elements
  • Typed atomic operations for all JSON values types
  • Secondary index support when combined with RediSearch

Quick start

docker run -p 6379:6379 --name redis-stack redis/redis-stack:latest

Documentation

Read the docs at http://redisjson.io

Build

Make sure you have Rust installed: https://www.rust-lang.org/tools/install

Then, build as usual:

cargo build --release

When running the tests, you need to explicitly specify the test feature to disable use of the Redis memory allocator when testing:

cargo test --features test

If you forget to do this, you'll see an error mentioning signal: 4, SIGILL: illegal instruction.

Run

Linux

redis-server --loadmodule ./target/release/librejson.so

Mac OS

redis-server --loadmodule ./target/release/librejson.dylib

Client libraries

Some languages have client libraries that provide support for RedisJSON's commands:

Project Language License Author Stars Package Comment
jedis Java MIT Redis Stars Maven
redis-py Python MIT Redis Stars pypi
node-redis Node.js MIT Redis Stars npm
nredisstack .NET MIT Redis Stars nuget
redis-om-python python BSD-3-Clause Redis redis-om-python-stars PyPi
Redisson Java Apache-2.0 Redisson Redisson-stars Maven
redis-modules-java Java Apache-2.0 Liming Deng @dengliming redis-modules-java-stars maven
redis-om-spring Java BSD-3-Clause Redis redis-om-spring-stars
iorejson Node.js MIT Evan Huang @evanhuang8 iorejson-stars npm
ioredis-rejson Node.js MIT Felipe Schulz @schulzf ioredis-rejson-stars npm
redis-om-node Node BSD-3-Clause Redis redis-om-node-stars npm
go-rejson Go MIT Nitish Malhotra @nitishm go-rejson-stars
rejonson Go Apache-2.0 Daniel Krom @KromDaniel rejonson-stars
rueidis Go Apache-2.0 Rueian @rueian rueidis-stars
NReJSON .NET MIT/Apache-2.0 Tommy Hanks @tombatron NReJSON-stars nuget
redis-om-dotnet .NET BSD-3-Clause Redis redis-om-dotnet-stars nuget
phpredis-json PHP MIT Rafa Campoy @averias phpredis-json-stars composer
redislabs-rejson PHP MIT Mehmet Korkmaz @mkorkmaz redislabs-rejson-stars composer
rejson-rb Ruby MIT Pavan Vachhani @vachhanihpavan rejson-rb-stars rubygems
rustis Rust MIT Dahomey Technologies rustis-stars crate Documentation

Acknowledgments

RedisJSON is developed with <3 at Redis Labs.

RedisJSON is made possible only because of the existance of this amazing open source project:

License

RedisJSON is licensed under the Redis Source Available License 2.0 (RSALv2) or the Server Side Public License v1 (SSPLv1).

About

RedisJSON - a JSON data type for Redis

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Rust 55.8%
  • Python 36.6%
  • Shell 4.6%
  • Makefile 1.6%
  • C 0.6%
  • Lua 0.5%
  • Dockerfile 0.3%