I am thinking about using BoltDB as a backend main DB and have few question with my Go code; also need your opinion of using BoltDB as a main backend DB.
- I am using Go's net/http, and use boltDb as global variable.
- When the program starts, it will read BoltDB and the file is open until the program terminates.
- When requests(http) are sent to the program, it will access BoltDB. (HandleFunc)
- I didn't use any channel.
Q1. Most important question, is BoltDB capable for production with 1000 concurrent connection? Q2. If there were concurrent writing queries, will BoltDB automatically process one by one?
Thank you so much. I am new to Go and BoltDB and I am wondering if I am using right DB with right way.