7

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?

BCS
  • 75,627
  • 68
  • 187
  • 294
kar
  • 977
  • 10
  • 21
  • 1
    D echoed to the D newsgroup: http://www.digitalmars.com/webnews/newsgroups.php?art_group=digitalmars.D.learn&article_id=16999 – BCS Jun 30 '09 at 05:37

1 Answers1

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.

Kornel
  • 97,764
  • 37
  • 219
  • 309