store

package
v0.2.15 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Oct 14, 2024 License: MIT Imports: 0 Imported by: 0

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Store

type Store interface {
	GetInternalStore() interface{}

	Get(key string) ([]byte, error)
	Set(key string, value []byte, options *WriteOptions) error

	Delete(key string) error
	DeleteAll(pattern string) error

	Exists(key string) (bool, error)
	Expire(key string, ttl int64) error

	Scan(prefix string, skip int, limit int, fn func(key string, val []byte)) error
	Count(prefix string) int

	Close() error
}

type WriteOptions

type WriteOptions struct {
	ContentType string
	TTL         int64
}

Directories

Path Synopsis

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL