| 12345678910111213141516171819202122232425262728 |
- package gocql
- import (
- "github.com/golang/snappy"
- )
- type Compressor interface {
- Name() string
- Encode(data []byte) ([]byte, error)
- Decode(data []byte) ([]byte, error)
- }
- // 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.
- type SnappyCompressor struct{}
- func (s SnappyCompressor) Name() string {
- return "snappy"
- }
- func (s SnappyCompressor) Encode(data []byte) ([]byte, error) {
- return snappy.Encode(nil, data), nil
- }
- func (s SnappyCompressor) Decode(data []byte) ([]byte, error) {
- return snappy.Decode(nil, data)
- }
|