SingleFileStoreConfigurationBuilder |
PersistenceConfigurationBuilder.addSingleFileStore() |
Adds a single file cache store.
|
SingleFileStoreConfigurationBuilder |
SingleFileStoreConfigurationBuilder.fragmentationFactor(float fragmentationFactor) |
The store tries to fit in a new entry into an existing entry from a free entry pool (if one is available)
However, this existing free entry may be quite bigger than what is required to contain the new entry
It may then make sense to split the free entry into two parts:
1.
|
SingleFileStoreConfigurationBuilder |
SingleFileStoreConfigurationBuilder.location(String location) |
Sets a location on disk where the store can write.
|
SingleFileStoreConfigurationBuilder |
SingleFileStoreConfigurationBuilder.maxEntries(int maxEntries) |
In order to speed up lookups, the single file cache store keeps an index
of keys and their corresponding position in the file.
|
SingleFileStoreConfigurationBuilder |
SingleFileStoreConfigurationBuilder.self() |
|