想实现层级目录存储key,类似/project/func/username 这种方式存储。
在redis中set key的时候把目录层级用冒号连接,如
/a/b/c/username的key值为simon
127.0.0.1:6379> set a:b:c:username simon OK 127.0.0.1:6379> get a:b:c:username "simon"
原创文章,转载请注明。本文链接地址: https://www.rootop.org/pages/4116.html
2018-09-29
想实现层级目录存储key,类似/project/func/username 这种方式存储。
在redis中set key的时候把目录层级用冒号连接,如
/a/b/c/username的key值为simon
127.0.0.1:6379> set a:b:c:username simon OK 127.0.0.1:6379> get a:b:c:username "simon"
原创文章,转载请注明。本文链接地址: https://www.rootop.org/pages/4116.html