Registry /
database / blevesearch-upsidedown-store-api
Install & Compatibility
Where this runs
No compatibility data collected yet for this library.
Code
Verified usage
Verified import paths — ran on the pinned version, not inferred.
upsidedown_store_api
✓ github.com/blevesearch/upsidedown_store_api
Opens a Bolt-backed key-value store using the upsidedown store API.
package main
import (
"fmt"
"github.com/blevesearch/upsidedown_store_api"
)
func main() {
config := map[string]interface{}{
"path": "example.bolt",
}
store, err := upsidedown_store_api.Open("bolt", config)
if err != nil {
fmt.Println(err)
return
}
defer store.Close()
fmt.Println("Store opened successfully")
}
Debug
Known issues
No known issues recorded.
Upgrade
Version history
1.0.2latest on pkg.go.dev
Audit
Dependencies
No dependency data recorded yet.