Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
328 views
in Technique[技术] by (71.8m points)

performance - Is it more efficient to use file IO or swap space for large temporary storage?

I have a program that needs to produce a large quantity of temporary data (in the 10-100 gigabyte range) that I don't expect to fit in memory. The data is only used internally to the program, like a stack: it writes the file and then reads it once in reverse, and then it's done. Given such a usage pattern, is it more efficient to use file IO (because I know it's going to be hitting the disk), or write entirely to a huge virtual memory allocation and rely on the OS to perform paging (which should not be inefficient because the working set is small, due to the linear usage of memory)?

question from:https://stackoverflow.com/questions/65840905/is-it-more-efficient-to-use-file-io-or-swap-space-for-large-temporary-storage

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...