File: doc.go

package info (click to toggle)
golang-github-willfaught-gockle 0.0~git20230112.8fc81aa-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 136 kB
  • sloc: makefile: 2
file content (15 lines) | stat: -rw-r--r-- 680 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Package gockle simplifies and mocks github.com/gocql/gocql. It provides
// simple interfaces to insert, query, and mutate Cassandra data, as well as get
// basic keyspace and table metadata.
//
// The entry points are NewSession and NewSimpleSession. Call them to get a
// Session. Session interacts with the database. It executes queries and batched
// queries and iterates result rows. Closing the Session closes the underlying
// gocql.Session, including the one passed to NewSimpleSession.
//
// Mocks are provided for testing use of Batch, Iterator, and Session.
//
// Tx is short for transaction.
//
// The name gockle comes from a pronunciation of gocql.
package gockle