Categorygithub.com/maxim0r/boltstore
modulepackage
0.1.0
Repository: https://github.com/maxim0r/boltstore.git
Documentation: pkg.go.dev

# README

BoltStore - Session store using BoltDB

Overview

BoltStore is a session store using Bolt which is a pure Go key/value store. You can store session data in Bolt by using this store. This store implements the gorilla/sessions package's Store interface.

Based on Redistore codebase.

# Functions

No description provided by the author
NewStoreWithDB returns a new BoltStore.

# Structs

boltstore stores sessions in a boltdb backend.
GobSerializer uses gob package to encode the session map.
JSONSerializer encode the session map to JSON.
No description provided by the author

# Interfaces

SessionSerializer provides an interface hook for alternative serializers.