You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

21 lines
495 B

  1. using Learun.Cache.Base;
  2. using Learun.Cache.Redis;
  3. namespace Learun.Cache.Factory
  4. {
  5. /// <summary>
  6. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  7. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  8. /// 创建人:陈彬彬
  9. /// 日 期:2017.03.06
  10. /// 描 述:定义缓存工厂类
  11. /// </summary>
  12. public class CacheFactory
  13. {
  14. public static ICache CaChe()
  15. {
  16. return new CacheByRedis();
  17. }
  18. }
  19. }