
A collection of Go packages for making Apache Cassandra more developer-friendly in Go projects.
qb
qb is a fluent-query builder for Cassandra Query Language (CQL), in Go. It makes building dynamic CQL queries easy, without requiring string interpolation, templating, or counting just how many bind ? placeholders are in a query. To learn more about qb, check out the package documentation.
migrate
migrate is a migrations library for creating, managing and migrating schemas in Apache Cassandra. migrate was written to support the gocql/v2 driver. Learn more about migrate.
pages
pages is a library providing a simple solution to a surprisingly hard problem - paginating through a result set. pages makes this easy, with support for paging tokens, common validation helpers, and easy interoperability with the official Go Cassandra driver project, gocql. Learn more about pages