package
0.0.0-20221202092917-2a8e25220a87
Repository: https://github.com/desistdaydream/go-datastorage.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author

# README

bolt 键值数据库的数据结构,本质上来说就是下面这样的

bucket_1:
  bucket:
    key_1: value_1
    ......
  ......
bucket_2:
  bucket_1:
    ......
  bucket_2:
    ......
  ......
.......
bucket_N:
  key_1: value_1
  key_2: value_2
  ......