为什么不能更改redis中缓存的对象的属性

时间:2017-08-07 12:42:24

标签: redis

我保存一个缓存在redis中的项目,然后我检索该项目并更改它的属性。

但属性可以更改,我有以下代码:  Item类:

Dim mySheet as Worksheet
Set mySheet = ThisWorkbooks.Worksheets("Summary-Champion Specific")
With mySheet
  .Range(.Cells(3, 1), .Cells(3, 1)).Resize(dict.Count).Value = Application.Transpose(dict.keys)
  .Range(.Cells(8 + UBound(Champ), 1), .Cells(8 + UBound(Champ), 1)).Resize(dict.Count).Value = Application.Transpose(dict.keys)
End With

现在nr仍为1,而不是2。

为什么不能修改redis中缓存的对象的属性?

0 个答案:

没有答案