Categorygithub.com/yusank/gohbase
repositorypackage
0.0.2
Repository: https://github.com/yusank/gohbase.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

gohbase

gohbase is a hbase client for golang. This package written based on github.com/tsuna/gohbase and defines some interface to operate hbase more simple and convenience. For example :

result := dbClient.Context(context.Background()).
    Table(msg.TableName()).
    Key(msg.HbaseRowKey()).
    Values(msg.HbaseValues()).
    Put() // define Put, Get, Delete, Scan etc.
if result.Err() != nil {
    return result.Err()
}
// result has more methos