www.digitalmars.com         C & C++   DMDScript  

digitalmars.D.learn - [SO] memory paging with D

reply BCS <none anon.com> writes:
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?
Jun 29 2009
next sibling parent reply BLS <windevguy hotmail.de> writes:
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 ?
Jun 29 2009
parent reply BLS <windevguy hotmail.de> writes:
BLS wrote:
 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 ?
ok, why not ? or is is it beyond to answere ?
Jul 04 2009
parent kar <noreply nomail.com> writes:
BLS Wrote:

 BLS wrote:
 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 ?
ok, why not ? or is is it beyond to answere ?
1 question, does sqlite 'memory db' support paging (disk cache) if i limit the memory cache to lets say 500mb? because there are lots of lookup/insert/update involve when creating the dictionary.
Jul 04 2009
prev sibling parent kar <kar nomail.com> writes:
BLS Wrote:

 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 ?
wouldn't the IO make it slower, there going to be a lot of insert/update for each word with sqlite.
Jul 01 2009