> This would probably be more scalable
> in terms of DB size than using the H2 in-memory driver - as the data will be
> out of the JVM heap but still in the OS memory.
The H2 file format does use less space than the pure in-memory
database. Of course you can use a ramdisk, but I guess it's slower
than the in-memory file systems "memFS:" and "memLZF:" - see also
http://h2database.com/html/advanced.html#file_system
database url: jdbc:h2:memFS:test
Regards,
Thomas