When I open an encrypted MVStore, the performance difference between 32bit 
and 64bit Java8 VM on Windows is huge.
Store contains 100k key value pairs.

With 32bit VM it takes 15-18 seconds
With 64bit VM it only takes 400 milliseconds

Is this known/accepted or a bug?

Sample code was:

long t1 = System.currentTimeMillis();

MVStore s = new MVStore.Builder().
        fileName(fileName).
        encryptionKey("007".toCharArray()).
        compress().
        readOnly().
        open();

MVMap<Integer, String> mbeso = s.openMap("map");

long t2 = System.currentTimeMillis();
System.out.println((t2 - t1) + "ms open");

-- 
You received this message because you are subscribed to the Google Groups "H2 
Database" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at https://groups.google.com/group/h2-database.
For more options, visit https://groups.google.com/d/optout.

Reply via email to