0
我正在使用這個軟件包Microsoft.Extensions.Caching.Redis
。 什麼是通過tModel
設置和獲取緩存的方式。將對象傳遞給DistributedCache set方法?
public class TestModel
{
public int test1 { get; set; }
public string test2 { get; set; }
}
var tModel = new TestModel();
tModel.test1 = 1;
tModel.test2 = "abc";
_distributedCache.Set("model", tModel);