我必须使用 redis 和 phpredis 构建一个存储日志和显示日志的应用程序。
在显示此日志之前,我需要进行排序和查询。
日志模型:
id -> 12
group -> sql
level -> error
message -> query return an error
timestamp -> 123423343
url -> htpp://...
查询示例:
-> Show me logs with group = sql and level = error
-> Show me all logs
-> Show me logs with group = sql and timestamp < 1342163216 && >1585876877
然后结果需要按 id (ASC) 排序。
所以我想知道这是否可能?以及选择什么型号?
我已经尝试过字符串、哈希、集合、列表,但我不能做任何我想做的事情。