namespace Kean.Infrastructure.NoSql.Redis { /// /// 表示数据类型 /// /// 值类型 public interface IValue { /// /// 获取值 /// /// 键 /// 值 T this[string key] { get; } } }