Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/danteay/go-cassandra
Cassandra Query Builder for humans
https://github.com/danteay/go-cassandra
Last synced: about 1 month ago
JSON representation
Cassandra Query Builder for humans
- Host: GitHub
- URL: https://github.com/danteay/go-cassandra
- Owner: danteay
- Created: 2020-10-21T16:56:16.000Z (about 4 years ago)
- Default Branch: master
- Last Pushed: 2023-02-24T00:09:05.000Z (almost 2 years ago)
- Last Synced: 2024-06-20T16:43:07.717Z (7 months ago)
- Language: Go
- Size: 76.2 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# go-cassandra
**This repo is on development**
This is a simple Query Builder for Apache Cassandra database. It uses `gocql` driver and `goclqx` Query Builder
internally to create friendly layer to interact with the database trough struct bindings.## Installing
Simple run next command to download the latest version.
```shell script
go get github.com/danteay/go-cassandra@latest
```You can create a client with this:
```go
package mainimport gocassandra "github.com/danteay/go-cassandra"
func main() {
client, err := gocassandra.NewClient(gocassandra.DefaultConfig())
if err != nil {
panic(err)
}// Do stuff...
client.Close()
}
```