Top 20 NuGet Packages depending on HBase Thrift Client in C#
Total dependencies: 1
HbaseThrift 连接池
//初始化连接池
HBaseClientPool.InitHBaseClientPool("192.168.0.242:9090|192.168.0.246:9090|192.168.0.250:9090");
//使用using 释放连接到连接池
using (var hclient = HBaseClientPool.GetHclient())
{
Stopwatch sw = new Stopwatch();
...