SQLite for large data sets?

前端 未结 5 646
离开以前
离开以前 2020-12-03 10:31

I have a reasonably large data set and would like to store it in a file rather than a RDBMS.

The main table in the data set is just over 1M rows, 30 columns and abou

5条回答
  •  北荒
    北荒 (楼主)
    2020-12-03 11:10

    I investigated SQLite recently for a similar application. The SQLite documentation states that SQLite databases can be terabytes in size, and that the primary limitation of SQLite is concurrency (many users at the same time). Although we didn't go this direction (we have our own binary storage format), I was pretty confident that SQLite could handle files of this size.

提交回复
热议问题