boltdb / bolt

An embedded key/value database for Go.
MIT License
14.24k stars 1.51k forks source link

is there a way to replicate boltdb across multiple servers? #710

Closed m-abdalrahman closed 7 years ago

m-abdalrahman commented 7 years ago

I built web service using boltdb, and I'm trying to make this service high availability, but I don't know how I can replicate data between different servers, is there a way to make me do that?

Thanks in advance.

benbjohnson commented 7 years ago

No, there's nothing in Bolt to support high availability. You'll need to add an additional layer at a higher level for that.

vincent-petithory commented 7 years ago

If you feel brave, you can give a try at this lib. It's not an out-of-the-box solution but it provides some building blocks for what you want to achieve.