Rootop 服务器运维与web架构

redis实现目录层级结构存储

想实现层级目录存储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

作者:Venus

服务器运维与性能优化

评论已关闭。