SQLite as a production database for a low-traffic site?

后端 未结 10 535
半阙折子戏
半阙折子戏 2020-12-12 21:32

I\'m considering using SQLite as a production database for a site that would receive perhaps 20 simultaneous users, but with the potential for a peak that could be many mult

10条回答
  •  -上瘾入骨i
    2020-12-12 22:36

    I think it would depend mostly on what your read/write ratio will be. If it's mostly reading from the database, you may be okay. Multi-user writing in SQLite can be a problem because of how it locks the database.

提交回复
热议问题