在node中使用redis,可以有这样的存储吗,redis.set('key1','key2',value) ,这样对一个value修改的时候,两个key1、key2就都修改完了?不用分两次修改
走同样的路,发现不同的人生
You can use the pipeline supported by redis and submit it as a request.
It is better to save twice.
Since you want two keys to reference one memory address, why not just use one key
You can use the pipeline supported by redis and submit it as a request.
It is better to save twice.
Since you want two keys to reference one memory address, why not just use one key