mirror of
https://github.com/matrix-construct/construct
synced 2024-11-17 23:40:57 +01:00
modules/media: Increase the block size for media db.
This commit is contained in:
parent
8d435305d0
commit
28df7cc529
1 changed files with 11 additions and 0 deletions
|
@ -72,8 +72,19 @@ media_blocks_descriptor
|
||||||
{}, // options
|
{}, // options
|
||||||
{}, // comparaor
|
{}, // comparaor
|
||||||
{}, // prefix transform
|
{}, // prefix transform
|
||||||
|
|
||||||
bool(media_blocks_cache_enable)? -1 : 0,
|
bool(media_blocks_cache_enable)? -1 : 0,
|
||||||
|
|
||||||
bool(media_blocks_cache_comp_enable)? -1 : 0,
|
bool(media_blocks_cache_comp_enable)? -1 : 0,
|
||||||
|
|
||||||
|
// bloom_bits
|
||||||
|
10,
|
||||||
|
|
||||||
|
// expect hit
|
||||||
|
true,
|
||||||
|
|
||||||
|
// block_size
|
||||||
|
32_KiB,
|
||||||
};
|
};
|
||||||
|
|
||||||
decltype(media_description)
|
decltype(media_description)
|
||||||
|
|
Loading…
Reference in a new issue