2 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
1
vote
1
answer
201
views
Issues with LevelDB Database Size Reduction in Go (levigo)
Hello Stack Overflow community,
I'm currently working on a Go program that utilizes LevelDB for data storage using the levigo package. My goal is to manage the database size efficiently, particularly ...
2
votes
1
answer
2k
views
What is the appropriate way to multithread LevelDB in Go?
I have implemented the levigo wrapper in my project so I can use LevelDB. The declaration is fairly boilerplate, like so:
func NewLeveldbStorage(dbPath string) *leveldbStorage {
opts := levigo....