namespace Kean.Infrastructure.Orleans { /// /// Redis 信息 /// public sealed class RedisClustering { /// /// 连接串 /// public string ConnectionString { get; set; } = "127.0.0.1:6379"; /// /// DB /// public int Database { get; set; } = 1; } }