mirror of
https://github.com/gofiber/storage.git
synced 2025-09-27 12:52:25 +08:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [github.com/aerospike/aerospike-client-go/v8](https://github.com/aerospike/aerospike-client-go) from 8.2.1 to 8.2.2. - [Release notes](https://github.com/aerospike/aerospike-client-go/releases) - [Changelog](https://github.com/aerospike/aerospike-client-go/blob/v8/CHANGELOG.md) - [Commits](https://github.com/aerospike/aerospike-client-go/compare/v8.2.1...v8.2.2) --- updated-dependencies: - dependency-name: github.com/aerospike/aerospike-client-go/v8 dependency-version: 8.2.2 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
id, title
id | title |
---|---|
aerospike | Aerospike |
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,
}