Advice on handling large data volumes

前端 未结 11 1298
鱼传尺愫
鱼传尺愫 2020-12-14 05:10

So I have a \"large\" number of \"very large\" ASCII files of numerical data (gigabytes altogether), and my program will need to process the entirety of it sequentially at l

11条回答
  •  暖寄归人
    2020-12-14 05:40

    If you need to access the data more than once, load it into a database. Most databases have some sort of bulk loading utility. If the data can all fit in memory, and you don't need to keep it around or access it that often, you can probably write something simple in Perl or your favorite scripting language.

提交回复
热议问题