2

我有一个带有嵌套数组的 JSON,如下所示,要保存在 Redis 中。我正在使用 RedisJSON 模块将数据保存为 JSON。

customer:12345 : {
    info : {
        key1: val1,
        key2: val2,
        key3: val3
    },
    rides: [
        {
            rideid: xxx,
            from: fromval,
            to: toval,
            date: dateofride,
            distance: distanceval,
            points: pointsval
        },
        {
            rideid: yyy,
            from: fromval,
            to: toval,
            date: dateofride,
            distance: distanceval,
            points: pointsval
        },
        ...
    ]
}

我有一种情况,可以将新项目添加到数组中,也可以编辑现有项目。我正在使用带有 express.js 的 node-redis 客户端。Express 应用程序仅接收在游乐设施数组中更改或添加的数据。如果该项已经在数组中,则必须用新数据替换现有的数组项(rideid 是每个对象的键),否则必须将其添加到数组中。我如何实现这一目标?

4

1 回答 1

1

给定以下 JSON 文档

{
    "info": {
        "key1": "val1"
    },
    "rides": [{
            "rideid": "xxx",
            "points": 0
        },
        {
            "rideid": "yyy",
            "points": 10
        }
    ]
}

customer:12345使用以下命令由 RedisJSON 中的键保存

127.0.0.1:6379> JSON.SET customer:12345 . "{\"info\": {\"key1\": \"val1\",\"key2\": \"val2\",\"key3\": \"val3\"},\"rides\":[{\"rideid\": \"xxx\",\"points\": 0 },\t{\"rideid\": \"yyy\",\"points\": 10}]}"

您可以通过例如将分数增加 5 来使用 Rideid 更新 Ride,yyy如下所示

127.0.0.1:6379> JSON.NUMINCRBY customer:12345 "$.rides[?(@.rideid=='yyy')].points" 5
"[15]"

$.rides[?(@.rideid=='yyy')].points是 JSONPath 表达式(更多herehere,也有回答here

添加新行程

127.0.0.1:6379> JSON.ARRAPPEND customer:12345 $.rides "{\"rideid\": \"zzz\",\"points\": 5 }"
1) (integer) 3

所有 RedisJSON 命令都可以在这里找到

于 2022-01-10T23:24:55.467 回答