@@ -235,20 +235,20 @@ MAX_DEX_TX_OPERATIONS_IN_TX_SET = 0
235
235
# 0, indiviudal index is always used. Default page size 16 kb.
236
236
BUCKETLIST_DB_INDEX_PAGE_SIZE_EXPONENT = 14
237
237
238
- # BUCKETLIST_DB_MEMORY_FOR_CACHING (Integer) default 3000
238
+ # BUCKETLIST_DB_MEMORY_FOR_CACHING (Integer) default 0
239
239
# Memory used for caching entries by BucketListDB when Bucket size is
240
240
# larger than BUCKETLIST_DB_INDEX_CUTOFF, in MB. Note that this value does
241
241
# not impact Buckets smaller than BUCKETLIST_DB_INDEX_CUTOFF, as they are
242
242
# always completely held in memory. If set to 0, caching is disabled.
243
- BUCKETLIST_DB_MEMORY_FOR_CACHING = 3000
243
+ BUCKETLIST_DB_MEMORY_FOR_CACHING = 0
244
244
245
- # BUCKETLIST_DB_INDEX_CUTOFF (Integer) default 100
245
+ # BUCKETLIST_DB_INDEX_CUTOFF (Integer) default 20
246
246
# Size, in MB, determining whether a bucket should have an individual
247
247
# key index or a key range index. If bucket size is below this value, range
248
248
# based index will be used. If set to 0, all buckets are range indexed. If
249
249
# BUCKETLIST_DB_INDEX_PAGE_SIZE_EXPONENT == 0, value ignored and all
250
250
# buckets have individual key index.
251
- BUCKETLIST_DB_INDEX_CUTOFF = 100
251
+ BUCKETLIST_DB_INDEX_CUTOFF = 20
252
252
253
253
# BUCKETLIST_DB_PERSIST_INDEX (bool) default true
254
254
# Determines whether BucketListDB indexes are saved to disk for faster
0 commit comments