Skip to main content
Version: sqlite3_v2.x.x

Aerospike

Release Discord Test

An Aerospike client driver using aerospike/aerospike-client-go and aerospike/aerospike-client-go.

Note: Requires Go 1.23 and above

Table of Contents

Signatures

func New(config ...Config) Storage
func (s *Storage) Get(key string) ([]byte, error)
func (s *Storage) Set(key string, val []byte, exp time.Duration) error
func (s *Storage) Delete(key string) error
func (s *Storage) Reset() error
func (s *Storage) Close() error
func (s *Storage) Conn() driver.Client
func (s *Storage) GetSchemaInfo() *SchemaInfo

Installation

Aerospike is tested on the 2 last Go versions with support for modules. So make sure to initialize one first if you didn't do that yet:

go mod init github.com/<user>/<repo>

And then install the aerospike implementation:

go get github.com/gofiber/storage/aerospike

Examples

Import the storage package.

import "github.com/gofiber/storage/aerospike"

You can use the following possibilities to create a storage:

// Initialize default config
store := aerospike.New()

// Initialize custom config
store := aerospike.New(aerospike.Config{
Hosts: []*aerospike.Host{aerospike.NewHost("localhost", 3000)},
Namespace: "test", // Default namespace
SetName: "fiber",
Reset: false,
Expiration: 1 * time.Hour,
SchemaVersion: 1,
SchemaDescription: "Default Fiber storage schema",
ForceSchemaUpdate: false,
})

Config

type Config struct {
// Hosts is a list of Aerospike server hosts
Hosts []*aerospike.Host

// Namespace is the Aerospike namespace
Namespace string

// Set is the Aerospike set
SetName string

// Reset clears any existing keys in existing Set
Reset bool

// Expiration is the default expiration time of entries
Expiration time.Duration

// SchemaVersion indicates the schema version to use
SchemaVersion int

// SchemaDescription provides additional info about the schema
SchemaDescription string

// ForceSchemaUpdate forces schema update even if version matches
ForceSchemaUpdate bool
}

Default Config

Used only for optional fields

var ConfigDefault = Config{
Hosts: []*aerospike.Host{aerospike.NewHost("localhost", 3000)},
Namespace: "test", // Default namespace
SetName: "fiber",
Reset: false,
Expiration: 1 * time.Hour,
SchemaVersion: 1,
SchemaDescription: "Default Fiber storage schema",
ForceSchemaUpdate: false,
}