Tagged Questions

7
votes
1answer
250 views

memory paging with D

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?
3
votes
5answers
314 views

malloc and free in D/Tango not freeing memory?

here is a simple d/tango code in windows: module d_test.d; import tango.util.log.Trace; import tango.core.Thread; import tango.stdc.stdlib : malloc, free; void main() { ...