Re: [SO] memory paging with D

2009-06-29 Thread BLS
BCS wrote: http://stackoverflow.com/questions/1057219/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? Why not using SQLite as memory db ?

Re: Compiling Templates

2009-06-29 Thread Saaa
Always nice to see the inner workings, thanks. Here a few things that bugged me: Seeing templates as runtime functions, making the whole instantiation thing kind of strange :) Trying to use implicitly deduces parameters for function templates. Writing Foo(d) iso Foo!(int [][])(d). -- template Fo

Re: How to print Chinese characters in console in window XP?

2009-06-29 Thread Elrood
@Rainer Deyke: Thanks for your clarification. The problem is that, unless you set up your system to use Chinese for every non-unicode-ready application, systemwide and for all users, you will not get Chinese character output in the Windows console. The downside is that setting up your OS in such

Re: Compiling Templates

2009-06-29 Thread Joel C. Salomon
Walter Bright wrote: > http://www.reddit.com/r/programming/comments/8wgak/compiling_templates/ Nice & informative. Now if there were only such a readable description of how exceptions work… —Joel Salomon

[SO] memory paging with D

2009-06-29 Thread BCS
http://stackoverflow.com/questions/1057219/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?