using Learun.Cache.Base; using Learun.Cache.Redis; namespace Learun.Cache.Factory { /// /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园 /// Copyright (c) 2013-2018 北京泉江科技有限公司 /// 创建人:陈彬彬 /// 日 期:2017.03.06 /// 描 述:定义缓存工厂类 /// public class CacheFactory { public static ICache CaChe() { return new CacheByRedis(); } } }