是否不能通过redis 5.0存储对象数组或对象列表?
我只能让它工作-如果我首先将数组/列表转换为如下的json格式:
redis.set('persons', JSON.stringify(array_of_persons)
const persons = JSON.parse(await redis.get('persons'));
或
redis.hset('my_list', 'persons', JSON.stringify(array_of_persons));
const persons = JSON.parse(await redis.hget('my_list', 'persons'));
但是,当我需要从集合中添加/更新/删除对象时,在javascript中连续地对大型集合进行字符串化/解析会有很大的开销——因此,如果在redis v中不能以更“本机”的方式进行,那么如何优化这段代码的性能呢。5.0?
暂无答案!
目前还没有任何答案,快来回答吧!