Uses of Class
org.h2.mvstore.MVStore.Builder
Packages that use MVStore.Builder
-
Uses of MVStore.Builder in org.h2.mvstore
Methods in org.h2.mvstore that return MVStore.BuilderModifier and TypeMethodDescriptionMVStore.Builder.autoCommitBufferSize
(int kb) Set the size of the write buffer, in KB disk space (for file-based stores).MVStore.Builder.autoCommitDisabled()
Disable auto-commit, by setting the auto-commit delay and auto-commit buffer size to 0.MVStore.Builder.autoCompactFillRate
(int percent) Set the auto-compact target fill rate.MVStore.Builder.backgroundExceptionHandler
(Thread.UncaughtExceptionHandler exceptionHandler) Set the listener to be used for exceptions that occur when writing in the background thread.MVStore.Builder.cacheConcurrency
(int concurrency) Set the read cache concurrency.MVStore.Builder.cacheSize
(int mb) Set the read cache size in MB.MVStore.Builder.compress()
Compress data before writing using the LZF algorithm.MVStore.Builder.compressHigh()
Compress data before writing using the Deflate algorithm.MVStore.Builder.encryptionKey
(char[] password) Encrypt / decrypt the file using the given password.Use the following file name.Use the provided file store instead of the default one.static MVStore.Builder
MVStore.Builder.fromString
(String s) Read the configuration from a string.MVStore.Builder.keysPerPage
(int keyCount) Set the number of keys per page.MVStore.Builder.pageSplitSize
(int pageSplitSize) Set the amount of memory a page should contain at most, in bytes, before it is split.MVStore.Builder.readOnly()
Open the file in read-only mode.MVStore.Builder.recoveryMode()
Open the file in recovery mode, where some errors may be ignored.private MVStore.Builder