At what point is it worth using a database?

后端 未结 13 1408
广开言路
广开言路 2020-11-29 18:26

I have a question relating to databases and at what point is worth diving into one. I am primarily an embedded engineer, but I am writing an application using Qt to interfa

13条回答
  •  感情败类
    2020-11-29 19:09

    To add a negative: not suitable for real-time processing, due to non-deterministic latency. However, It would be quite ample for looking up and setting operating parameters, for instance during startup. I would not put database accesses on critical time paths.

提交回复
热议问题