dgraph-io / badger

Fast key-value DB in Go.

Home Page:https://dgraph.io/badger

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

[QUESTION]: Connection pooler for badger

alexandru-calinoiu opened this issue · comments

Question.

I am trying to evaluate if badger is the best tool for my use case. I need the speed that this db offers but I also need to access it from multiple processes, the first thing that came in my mind using some sort of connection pooler, is this something that can be achieved with badger?

Because badger is used as an embedded library, you can create multiple txns that run in parallel in one process. Currently, we do not allow accessing badger from multiple processes.

Got it, thank you for your reply.