如何在c#中的Redis Cache / Hash中存储字典

时间:2015-08-12 13:21:03

标签: caching c#-4.0 dictionary redis

我正在使用缓存来存储String toCall = "tel:" + number.getText().toString(); startActivity(new Intent(Intent.ACTION_DIAL, Uri.parse(toCall))); ,就像打击一样。

ENUMCACHE

现在我需要改变Redis Cahche / Hash。

如何在Redis中存储字典。

1 个答案:

答案 0 :(得分:0)

Enum<string, string> dic = new Enum<string, string>();
dic.Add("test","test");

connection.Set<Enum<string, string>>("SOMETEST", dic, DateTime.Now.AddMinutes(10));

dic = connection.Get<Enum<string, string>>("SOMETEST");