JRedisJSON icon indicating copy to clipboard operation
JRedisJSON copied to clipboard

Add RFC6901 json pointer support

Open leonchen83 opened this issue 3 years ago • 0 comments

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 .[\"abc\"].[\"0\"] if users want to use .abc.0, they should use Path.of(".abc.0") instead of Path.ofJosnPointer("/abc/0")

leonchen83 avatar Feb 24 '22 07:02 leonchen83