|
@@ -12,21 +12,10 @@ namespace MySystem
|
|
|
#region 获取单个字段
|
|
|
public Consumers Get(int Id)
|
|
|
{
|
|
|
- string key = "Consumers:" + Id;
|
|
|
- if (RedisDbconn.Instance.Exists(key))
|
|
|
- {
|
|
|
- Consumers obj = RedisDbconn.Instance.Get<Consumers>(key);
|
|
|
- if (obj != null)
|
|
|
- {
|
|
|
- return obj;
|
|
|
- }
|
|
|
- }
|
|
|
WebCMSEntities db = new WebCMSEntities();
|
|
|
Consumers order = db.Consumers.FirstOrDefault(m => m.Id == Id);
|
|
|
if (order != null)
|
|
|
{
|
|
|
- RedisDbconn.Instance.Set(key, order);
|
|
|
- RedisDbconn.Instance.SetExpire(key, Library.function.get_Random(1800, 5400));
|
|
|
}
|
|
|
return order;
|
|
|
}
|