eventstore: delete badger, it's too buggy.

This commit is contained in:
fiatjaf
2025-08-04 12:23:43 -03:00
parent 50c9ea3867
commit 6bda63de17
23 changed files with 19 additions and 1550 deletions

View File

@@ -5,15 +5,15 @@ import (
"testing"
"fiatjaf.com/nostr"
"fiatjaf.com/nostr/eventstore/badger"
"fiatjaf.com/nostr/eventstore/lmdb"
"github.com/stretchr/testify/assert"
)
func TestBlugeFlow(t *testing.T) {
os.RemoveAll("/tmp/blugetest-badger")
os.RemoveAll("/tmp/blugetest-lmdb")
os.RemoveAll("/tmp/blugetest-bluge")
bb := &badger.BadgerBackend{Path: "/tmp/blugetest-badger"}
bb := &lmdb.LMDBBackend{Path: "/tmp/blugetest-lmdb"}
bb.Init()
defer bb.Close()