using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace SiteCore.Redis { public class aaRedis { private static RedisHelp _instance; private static readonly object dLocker6 = new object(); public static RedisHelp RedisHelper { get { if (_instance == null) { lock (dLocker6) { if (_instance == null) { _instance = new RedisHelp(6); } } } return _instance; } } } }