HBaseThrift 1.0.0
dotnet add package HBaseThrift --version 1.0.0
NuGet\Install-Package HBaseThrift -Version 1.0.0
<PackageReference Include="HBaseThrift" Version="1.0.0" />
paket add HBaseThrift --version 1.0.0
#r "nuget: HBaseThrift, 1.0.0"
// Install HBaseThrift as a Cake Addin #addin nuget:?package=HBaseThrift&version=1.0.0 // Install HBaseThrift as a Cake Tool #tool nuget:?package=HBaseThrift&version=1.0.0
HBase Thrift Client in C# - built locally
Product | Versions Compatible and additional computed target framework versions. |
---|---|
.NET Framework | net452 is compatible. net46 was computed. net461 was computed. net462 was computed. net463 was computed. net47 was computed. net471 was computed. net472 was computed. net48 was computed. net481 was computed. |
-
- ApacheThrift (>= 0.9.3)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on HBaseThrift:
Package | Downloads |
---|---|
HbaseThriftPool
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(); for (int i = 0; i <= 10000; i++) { try { sw.Restart(); string row = System.Guid.NewGuid().ToString(); hclient.Client.mutateRow("1".ToBytes(), row.ToBytes(), new List<Mutation> { new Mutation { Column = "b:abc".ToBytes(), Value = DateTime.Now.ToBytes() } }, null); sw.Stop(); Console.WriteLine($"时间:{DateTime.Now} 耗时:{sw.ElapsedMilliseconds} "); } catch (Exception ex) { Console.WriteLine(ex.Message); } } } |
GitHub repositories
This package is not used by any popular GitHub repositories.