Versions in this module Expand all Collapse all v1 v1.18.0 Aug 2, 2026 Changes in this version + type Store struct + BasePath string + func New(basePath string) (*Store, error) + func (s *Store) Delete(_ context.Context, key string) error + func (s *Store) Exists(_ context.Context, key string) (bool, error) + func (s *Store) Flush(ctx context.Context) error + func (s *Store) Get(_ context.Context, key string) ([]byte, error) + func (s *Store) GetRange(_ context.Context, key string, offset, length int64) ([]byte, error) + func (s *Store) List(_ context.Context, prefix string) ([]string, error) + func (s *Store) Put(_ context.Context, key string, data []byte) error + func (s *Store) Size(_ context.Context, key string) (int64, error) + func (s *Store) TotalSize(_ context.Context) (int64, error)