rejonson
rejonson copied to clipboard
Golang Redis Rejson extension built upon go-redis
Please notice all the commands can now get full jsonpath, i.e. dynamic paths that start with a $ sign. As a result all the commands can now return multi parts...
`ExtendClient` currently on works with the unversioned branch of go-redis (which is currently stuck at v6 for me). The go-redis project currently recommends using their v8 client which gives me...
I am connecting to a redis service that requires a password: ```go goRedisClient := redis.NewClient(&redis.Options{ Addr: "abc.com:8000", Password: "xxxxxxxxx", DB: 0, }) ``` When I call `client.JsonGet()` method, I get...