# 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.
# 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.