How Should I Implement a Huge but Simple Indexed StringList in Delphi?

后端 未结 7 1670
攒了一身酷
攒了一身酷 2021-01-06 09:19

I am using Delphi 2009. I have a very simple data structure, with 2 fields:

  1. A string that is the key field I need to retrieve by and is usually 4 to 15 charact
7条回答
  •  没有蜡笔的小新
    2021-01-06 10:06

    For more than 10GB in data, a database is exactly what you need. It will handle indexing for rapidly locating data (your random retrieval), the functionality for adding, modifying, and deleting data, and the actual storage, as well as much more if you so choose.

    There are dozens of posts here related to which databases are available for use in Delphi, including built-ins and FOS ones like Firebird.

提交回复
热议问题