HBaseThrift 1.0.0

dotnet add package HBaseThrift --version 1.0.0
NuGet\Install-Package HBaseThrift -Version 1.0.0
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="HBaseThrift" Version="1.0.0" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add HBaseThrift --version 1.0.0
#r "nuget: HBaseThrift, 1.0.0"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// 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 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. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

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.

Version Downloads Last updated
1.0.0 2,760 1/13/2017
0.9.3 1,072 1/14/2017