JRedisJSON icon indicating copy to clipboard operation
JRedisJSON copied to clipboard

A Java client (wrapper) for Redis RedisJSON

Results 17 JRedisJSON issues
Sort by recently updated
recently updated
newest added

my test data is here {"uid":1806217,"app":"znt","device_id":"879ce681_d5c7_4bbe_ae48_1e0a11c3bce1","create_time":"2022-02-23 10:17:14"} the uid attribute is long i have tried jReJSON.get(key, String.class, new Path("$.uid")), ![image](https://user-images.githubusercontent.com/5616997/158132957-9c3aaedd-ae12-499b-ad32-ae94ee0cf781.png) ![image](https://user-images.githubusercontent.com/5616997/158132989-93d08a0b-fe33-4db8-9236-fad024804b68.png) i tried the jReJSON.get(key, List.class, new Path("$.uid")), or jReJSON.get(key,...

Snyk has created this PR to upgrade com.google.code.gson:gson from 2.8.9 to 2.9.0. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...

Now Path can convert RFC6901 style path to json path for example `Path.ofJosnPointer("/abc/0")` can convert to `Path.of(".[\"abc\"].[0]")` the limitation of JsonPointer path is `/abc/0` always convert to `.[\"abc\"].[0]` and not...

I have a json like following ``` `json.set doc . '{"":"empty", "\\":"slash","\'":"quote","\n":"enter", "\"":"double quote", "\'\'":"quote quote", "\t":"tab", "/":"value"}'` ``` if I want to get value `"empty"`. I can use `json.get...

help wanted

How does Java get multiple attributes? ` 127.0.0.1:6379> json.get a "{\"name\":\"abcd\",\"age\":1,\"type\":1}" 127.0.0.1:6379> json.get a name age "{\"age\":1,\"name\":\"abcd\"}" `

Snyk has created this PR to upgrade redis.clients:jedis from 3.7.1 to 4.0.0. :information_source: Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify...

config: ``` spring: redis: database: 6 host: ${extraEnvHost} port: 6379 password: ${redis.pwd} pool: minIdle: 1 maxIdle: 10 maxWait: 3 maxActive: 8 @Component public class JedisCompent { @Autowired private RedisConnectionFactory connectionFactory;...

Hi , I've started a redis-redisjson container and loaded the module as seen below: ![image](https://user-images.githubusercontent.com/16700272/81671050-31622980-9451-11ea-88b2-cebde4929779.png) now when trying to reach out the server from my java client - using 1.2.0...

help wanted

String json = "{\"setting\":{\"profit_ report\":{\"profit_ report_ tb\":{\"__ meta\":{\"text\":\"abc\"}}}}}"; Want to append a property check:true , how to write the set method

help wanted