1. Zookeeper Distributed Configuration
1.1. Install SmartSql.ZooKeeperConfig
Install-Package SmartSql.ZooKeeperConfig
1.2. Demo
String connStr = "192.168.31.103:2181";
Var configLoader = new ZooKeeperConfigLoader(connStr);
String configPath = "/Config/App1/SmartSqlMapConfig.xml";
Var sqlMapper = new SmartSqlMapper(configPath, configLoader);
Var list = sqlMapper.Query<T_Test>(new RequestContext
{
Scope = "T_Test",
SqlId = "GetList",
Request = new { Ids = new long[] { 1, 2, 3, 4 } }
});
1.3. Tools use ZooKeeper-Admin
