欢迎来到Riguz的小站!这是一个私人wiki,用来记录一些我的笔记。
Redis中用什么来存储JSON呢?
Redis中没有标准的JSON操作的命令,RedisJSON 自己实现了一套。
127.0.0.1:6379> json.set example1 .test2 '{"test3":[1,2,3]}' OK 127.0.0.1:6379> JSON.GET example1 .test2.test3[1] 2