Re: [sqlite] Default sqlite memory management policy

2007-04-05 Thread Rich Rattanni
On 4/5/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: "Rich Rattanni" <[EMAIL PROTECTED]> wrote: > > I am just wondering should I take matters into my own hands, > and compile and make use of sqlite3_soft_heap_limit(), or can I trust > SQLITE to manage it for me. If you do not set sqlite3_soft

Re: [sqlite] Default sqlite memory management policy

2007-04-05 Thread drh
"Rich Rattanni" <[EMAIL PROTECTED]> wrote: > > I am just wondering should I take matters into my own hands, > and compile and make use of sqlite3_soft_heap_limit(), or can I trust > SQLITE to manage it for me. If you do not set sqlite3_soft_heap_limit(), SQLite assumes you are on a workstation wi

Re: [sqlite] Default sqlite memory management policy

2007-04-05 Thread Rich Rattanni
On 4/4/07, [EMAIL PROTECTED] <[EMAIL PROTECTED]> wrote: "Rich Rattanni" <[EMAIL PROTECTED]> wrote: > On 4/3/07, Rich Rattanni <[EMAIL PROTECTED]> wrote: > > All: > >I was wondering exactly how SQLite handles freeing memory used > > from the heap when compiled without SQLITE_ENABLE_MEMORY_MANA

Re: [sqlite] Default sqlite memory management policy

2007-04-04 Thread drh
"Rich Rattanni" <[EMAIL PROTECTED]> wrote: > On 4/3/07, Rich Rattanni <[EMAIL PROTECTED]> wrote: > > All: > >I was wondering exactly how SQLite handles freeing memory used > > from the heap when compiled without SQLITE_ENABLE_MEMORY_MANAGEMENT? > > > >Will absolutely no memory be freed, or

[sqlite] Default sqlite memory management policy

2007-04-03 Thread Rich Rattanni
All: I was wondering exactly how SQLite handles freeing memory used from the heap when compiled without SQLITE_ENABLE_MEMORY_MANAGEMENT? Will absolutely no memory be freed, or is there some default memory management scheme used? -