SQLite for large data sets?

前端 未结 5 640
离开以前
离开以前 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:33

    sqlite should work just fine for you. I have run a data set of that size even in an embedded device and sqlite performance was quite reasonable.

    As stated, the main bottleneck is concurrency. Aim to design your system so that there is at most one database handle open per database file.

提交回复
热议问题