Merge pull request #12385 from ieQu1/ds-meta-ram-cache

fix(ds): Cache database metadata in RAM
This commit is contained in:
ieQu1 2024-01-24 19:32:38 +01:00 committed by GitHub
commit ec93d8cf18
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -388,7 +388,7 @@ ensure_tables() ->
{rlog_shard, ?SHARD},
{majority, Majority},
{type, ordered_set},
{storage, rocksdb_copies},
{storage, disc_copies},
{record_name, ?META_TAB},
{attributes, record_info(fields, ?META_TAB)}
]),
@ -396,7 +396,7 @@ ensure_tables() ->
{rlog_shard, ?SHARD},
{majority, Majority},
{type, ordered_set},
{storage, rocksdb_copies},
{storage, disc_copies},
{record_name, ?NODE_TAB},
{attributes, record_info(fields, ?NODE_TAB)}
]),