Which embedded database capable of 100 million records has an efficient C or C++ API

后端 未结 11 1654
盖世英雄少女心
盖世英雄少女心 2020-12-24 13:38

I\'m looking for a cross-platform database engine that can handle databases up hundreds of millions of records without severe degradation in query performance. It needs to h

11条回答
  •  再見小時候
    2020-12-24 14:25

    Many good solutions (such as SQLite) have been mentioned. Let me add two, since you don't require SQL:

    • HamsterDB fast, simple to use, can store arbitrary binary data. No provision for shared databases.
    • Glib HashTable module seems quite interesting too and is very common so you won't risk going into a dead end. On the other end, I'm not sure there is and easy way to store the database on the disk, it's mostly for in-memory stuff

    I've tested both on multi-million records projects.

提交回复
热议问题