Skip to content

Commit 077cea8

Browse files
author
Thomas Rega
committed
HBase.NET.1.0.3.1: Setting the caching on the TScan object to reduce the number of remote procedure calls.
1 parent fc8921d commit 077cea8

File tree

3 files changed

+7
-6
lines changed

3 files changed

+7
-6
lines changed

HBase.NET/Client.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -746,6 +746,7 @@ public IDictionary<string, POCO> Scan<POCO>(string TableName, string ColumnFamil
746746

747747
int ScannerID = -1;
748748
TScan ScanObj = new TScan();
749+
ScanObj.Caching = 1000;
749750
ScanObj.Columns = Columns;
750751

751752
if ((object)KeyStart != null)

HBase.NET/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
[assembly: AssemblyConfiguration("")]
2525
[assembly: AssemblyCompany("")]
2626
[assembly: AssemblyProduct("HBase.NET")]
27-
[assembly: AssemblyCopyright("Copyright © 2017 CareerBuilder, LLC")]
27+
[assembly: AssemblyCopyright("Copyright © 2018 CareerBuilder, LLC")]
2828
[assembly: AssemblyTrademark("")]
2929
[assembly: AssemblyCulture("")]
3030

@@ -49,5 +49,5 @@
4949
// You can specify all the values or you can default the Build and Revision Numbers
5050
// by using the '*' as shown below:
5151
// [assembly: AssemblyVersion("1.0.*")]
52-
[assembly: AssemblyVersion("1.0.3.0")]
53-
[assembly: AssemblyFileVersion("1.0.3.0")]
52+
[assembly: AssemblyVersion("1.0.3.1")]
53+
[assembly: AssemblyFileVersion("1.0.3.1")]

TestHBase.NET/Properties/AssemblyInfo.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
[assembly: AssemblyConfiguration("")]
2525
[assembly: AssemblyCompany("")]
2626
[assembly: AssemblyProduct("HBase.NET Test")]
27-
[assembly: AssemblyCopyright("Copyright © 2017 CareerBuilder, LLC")]
27+
[assembly: AssemblyCopyright("Copyright © 2018 CareerBuilder, LLC")]
2828
[assembly: AssemblyTrademark("")]
2929
[assembly: AssemblyCulture("")]
3030

@@ -46,5 +46,5 @@
4646
//
4747
// You can specify all the values or you can default the Build and Revision Numbers
4848
// by using the '*' as shown below:
49-
[assembly: AssemblyVersion("1.0.3.0")]
50-
[assembly: AssemblyFileVersion("1.0.3.0")]
49+
[assembly: AssemblyVersion("1.0.3.1")]
50+
[assembly: AssemblyFileVersion("1.0.3.1")]

0 commit comments

Comments
 (0)