1.

Does Hsqldb Store All Data In Memory? Doesn't Memory Run Out As A Result?

Answer»

It stores all DATA in memory only if you want to. By default, CREATE TABLE RESULTS in a memory table, as this is the best TYPE for smaller tables. For larger tables, use CREATE CACHED TABLE and adjust the cache size to SUITE your memory use requirements (as little as 8MB or so).

It stores all data in memory only if you want to. By default, CREATE TABLE results in a memory table, as this is the best type for smaller tables. For larger tables, use CREATE CACHED TABLE and adjust the cache size to suite your memory use requirements (as little as 8MB or so).



Discussion

No Comment Found