使用 D 进行内存分页
我正在使用 D/Tango 进行目录索引,是否有任何库可以帮助对内存中的字典进行内存 (RAM) 分页,并且在执行索引时可以达到 10GB?
I'm using D/Tango for catalog indexing, is there any library to aid with memory (RAM) paging for a dictionary which is in memory and can go up to 10gb while performing indexing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要什么样的援助?
如果您只是分配内存,操作系统将自动处理分页。
如果您想要磁盘结构,请使用内存映射文件。
What kind of aid do you need?
If you simply allocate the memory, operating system will take care of paging automatically.
If you want on-disk structure, then use memory mapped file.