Documentation ¶
Overview ¶
Package gocql implements a fast and robust Cassandra driver for the Go programming language.
Index ¶
- Variables
- func Marshal(info *TypeInfo, value interface{}) ([]byte, error)
- func Unmarshal(info *TypeInfo, data []byte, value interface{}) error
- type Batch
- type BatchEntry
- type BatchType
- type Cluster
- type ClusterConfig
- type ColumnInfo
- type Compressor
- type Conn
- type ConnConfig
- type Consistency
- type Error
- type Iter
- type MarshalError
- type Marshaler
- type Node
- type Query
- func (q *Query) Consistency(c Consistency) *Query
- func (q *Query) Exec() error
- func (q *Query) Iter() *Iter
- func (q *Query) PageSize(n int) *Query
- func (q *Query) Prefetch(p float64) *Query
- func (q *Query) Scan(dest ...interface{}) error
- func (q *Query) ScanCAS(dest ...interface{}) (applied bool, err error)
- func (q *Query) Trace(trace Tracer) *Query
- type RoundRobin
- type Session
- func (s *Session) Close()
- func (s *Session) ExecuteBatch(batch *Batch) error
- func (s *Session) Query(stmt string, values ...interface{}) *Query
- func (s *Session) SetConsistency(cons Consistency)
- func (s *Session) SetPageSize(n int)
- func (s *Session) SetPrefetch(p float64)
- func (s *Session) SetTrace(trace Tracer)
- type SnappyCompressor
- type Tracer
- type Type
- type TypeInfo
- type UnmarshalError
- type Unmarshaler
Constants ¶
This section is empty.
Variables ¶
var ( ErrNotFound = errors.New("not found") ErrProtocol = errors.New("protocol error") ErrUnsupported = errors.New("feature not supported") )
var (
ErrNoHosts = errors.New("no hosts provided")
)
Functions ¶
Types ¶
type Batch ¶
type Batch struct { Type BatchType Entries []BatchEntry Cons Consistency }
type BatchEntry ¶
type BatchEntry struct { Stmt string Args []interface{} }
type ClusterConfig ¶
type ClusterConfig struct { Hosts []string // addresses for the initial connections CQLVersion string // CQL version (default: 3.0.0) ProtoVersion int // version of the native protocol (default: 2) Timeout time.Duration // connection timeout (default: 200ms) DefaultPort int // default port (default: 9042) Keyspace string // initial keyspace (optional) NumConns int // number of connections per host (default: 2) NumStreams int // number of streams per connection (default: 128) DelayMin time.Duration // minimum reconnection delay (default: 1s) DelayMax time.Duration // maximum reconnection delay (default: 10min) StartupMin int // wait for StartupMin hosts (default: len(Hosts)/2+1) Consistency Consistency // default consistency level (default: Quorum) Compressor Compressor // compression algorithm (default: nil) }
ClusterConfig is a struct to configure the default cluster implementation of gocoql. It has a varity of attributes that can be used to modify the behavior to fit the most common use cases. Applications that requre a different setup must implement their own cluster.
func NewCluster ¶
func NewCluster(hosts ...string) *ClusterConfig
NewCluster generates a new config for the default cluster implementation.
func (*ClusterConfig) CreateSession ¶
func (cfg *ClusterConfig) CreateSession() (*Session, error)
CreateSession initializes the cluster based on this config and returns a session object that can be used to interact with the database.
type ColumnInfo ¶
type Compressor ¶
type Conn ¶
type Conn struct {
// contains filtered or unexported fields
}
Conn is a single connection to a Cassandra node. It can be used to execute queries, but users are usually advised to use a more reliable, higher level API.
func Connect ¶
func Connect(addr string, cfg ConnConfig, cluster Cluster) (*Conn, error)
Connect establishes a connection to a Cassandra node. You must also call the Serve method before you can execute any queries.
func (*Conn) UseKeyspace ¶
type ConnConfig ¶
type Consistency ¶
type Consistency int
const ( Any Consistency = 1 + iota One Two Three Quorum All LocalQuorum EachQuorum Serial LocalSerial )
func (Consistency) String ¶
func (c Consistency) String() string
type Iter ¶
type Iter struct {
// contains filtered or unexported fields
}
Iter represents an iterator that can be used to iterate over all rows that were returned by a query. The iterator might send additional queries to the database during the iteration if paging was enabled.
func (*Iter) Close ¶
Close closes the iterator and returns any errors that happened during the query or the iteration.
func (*Iter) Columns ¶
func (iter *Iter) Columns() []ColumnInfo
Columns returns the name and type of the selected columns.
func (*Iter) Scan ¶
Scan consumes the next row of the iterator and copies the columns of the current row into the values pointed at by dest. Scan might send additional queries to the database to retrieve the next set of rows if paging was enabled.
Scan returns true if the row was successfully unmarshaled or false if the end of the result set was reached or if an error occurred. Close should be called afterwards to retrieve any potential errors.
type MarshalError ¶
type MarshalError string
func (MarshalError) Error ¶
func (m MarshalError) Error() string
type Marshaler ¶
Marshaler is the interface implemented by objects that can marshal themselves into values understood by Cassandra.
type Query ¶
type Query struct {
// contains filtered or unexported fields
}
Query represents a CQL statement that can be executed.
func (*Query) Consistency ¶
func (q *Query) Consistency(c Consistency) *Query
Consistency sets the consistency level for this query. If no consistency level have been set, the default consistency level of the cluster is used.
func (*Query) Iter ¶
Iter executes the query and returns an iterator capable of iterating over all results.
func (*Query) PageSize ¶
PageSize will tell the iterator to fetch the result in pages of size n. This is useful for iterating over large result sets, but setting the page size to low might decrease the performance. This feature is only available in Cassandra 2 and onwards.
func (*Query) Prefetch ¶
SetPrefetch sets the default threshold for pre-fetching new pages. If there are only p*pageSize rows remaining, the next page will be requested automatically.
func (*Query) Scan ¶
Scan executes the query, copies the columns of the first selected row into the values pointed at by dest and discards the rest. If no rows were selected, ErrNotFound is returned.
type RoundRobin ¶
type RoundRobin struct {
// contains filtered or unexported fields
}
func NewRoundRobin ¶
func NewRoundRobin() *RoundRobin
func (*RoundRobin) AddNode ¶
func (r *RoundRobin) AddNode(node Node)
func (*RoundRobin) Close ¶
func (r *RoundRobin) Close()
func (*RoundRobin) Pick ¶
func (r *RoundRobin) Pick(qry *Query) *Conn
func (*RoundRobin) RemoveNode ¶
func (r *RoundRobin) RemoveNode(node Node)
func (*RoundRobin) Size ¶
func (r *RoundRobin) Size() int
type Session ¶
type Session struct { Node Node // contains filtered or unexported fields }
Session is the interface used by users to interact with the database.
It extends the Node interface by adding a convinient query builder and automatically sets a default consinstency level on all operations that do not have a consistency level set.
func (*Session) Close ¶
func (s *Session) Close()
Close closes all connections. The session is unusable after this operation.
func (*Session) ExecuteBatch ¶
func (*Session) Query ¶
Query generates a new query object for interacting with the database. Further details of the query may be tweaked using the resulting query value before the query is executed.
func (*Session) SetConsistency ¶
func (s *Session) SetConsistency(cons Consistency)
SetConsistency sets the default consistency level for this session. This setting can also be changed on a per-query basis and the default value is Quorum.
func (*Session) SetPageSize ¶
SetPageSize sets the default page size for this session. A value <= 0 will disable paging. This setting can also be changed on a per-query basis.
func (*Session) SetPrefetch ¶
SetPrefetch sets the default threshold for pre-fetching new pages. If there are only p*pageSize rows remaining, the next page will be requested automatically. This value can also be changed on a per-query basis and the default value is 0.25.
type SnappyCompressor ¶
type SnappyCompressor struct{}
SnappyCompressor implements the Compressor interface and can be used to compress incoming and outgoing frames. The snappy compression algorithm aims for very high speeds and reasonable compression.
func (SnappyCompressor) Name ¶
func (s SnappyCompressor) Name() string
type Tracer ¶
type Tracer interface {
Trace(traceId []byte)
}
Tracer is the interface implemented by query tracers. Tracers have the ability to obtain a detailed event log of all events that happened during the execution of a query from Cassandra. Gathering this information might be essential for debugging and optimizing queries, but this feature should not be used on production systems with very high load.
type Type ¶
type Type int
Type is the identifier of a Cassandra internal datatype.
const ( TypeCustom Type = 0x0000 TypeAscii Type = 0x0001 TypeBigInt Type = 0x0002 TypeBlob Type = 0x0003 TypeBoolean Type = 0x0004 TypeCounter Type = 0x0005 TypeDecimal Type = 0x0006 TypeDouble Type = 0x0007 TypeFloat Type = 0x0008 TypeInt Type = 0x0009 TypeTimestamp Type = 0x000B TypeUUID Type = 0x000C TypeVarchar Type = 0x000D TypeVarint Type = 0x000E TypeTimeUUID Type = 0x000F TypeInet Type = 0x0010 TypeList Type = 0x0020 TypeMap Type = 0x0021 TypeSet Type = 0x0022 )
type TypeInfo ¶
type TypeInfo struct { Type Type Key *TypeInfo // only used for TypeMap Elem *TypeInfo // only used for TypeMap, TypeList and TypeSet Custom string // only used for TypeCostum }
TypeInfo describes a Cassandra specific data type.
type UnmarshalError ¶
type UnmarshalError string
func (UnmarshalError) Error ¶
func (m UnmarshalError) Error() string
type Unmarshaler ¶
Unmarshaler is the interface implemented by objects that can unmarshal a Cassandra specific description of themselves.
Source Files ¶
Directories ¶
Path | Synopsis |
---|---|
The uuid package can be used to generate and parse universally unique identifiers, a standardized format in the form of a 128 bit number.
|
The uuid package can be used to generate and parse universally unique identifiers, a standardized format in the form of a 128 bit number. |