Skip to content

Commit

Permalink
cache no binary store by default
Browse files Browse the repository at this point in the history
  • Loading branch information
thoniTUB committed Jan 17, 2025
1 parent a62661b commit 0a5c550
Showing 1 changed file with 9 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -178,12 +178,17 @@ public class XodusStoreFactory implements StoreFactory {
/**
* Map of flags for each {@link StoreMappings}, whether its binary store should be fully cached.
* This allows for faster store access as the {@link SerializingStore} can deserialize values in parallel.
* <br/>
* For example:
* <pre>
* cacheBinaryStore = Map.of(
* BUCKETS, true,
* C_BLOCKS, true
* );
* </pre>
*
*/
private Map<StoreMappings, Boolean> cacheBinaryStore = Map.of(
BUCKETS, true,
C_BLOCKS, true
);
private Map<StoreMappings, Boolean> cacheBinaryStore = Map.of();

@JsonIgnore
@JacksonInject(useInput = OptBoolean.FALSE)
Expand Down

0 comments on commit 0a5c550

Please sign in to comment.