mirror of
https://github.com/hoytech/strfry.git
synced 2025-06-17 00:38:50 +00:00
7 lines
288 B
C
7 lines
288 B
C
#pragma once
|
|
|
|
const uint64_t CURR_DB_VERSION = 1;
|
|
const size_t MAX_SUBID_SIZE = 71; // Statically allocated size in SubId
|
|
const uint64_t MAX_TIMESTAMP = 17179869184; // Safety limit to ensure it can fit in quadrable key. Good until year 2514.
|
|
const size_t MAX_INDEXED_TAG_VAL_SIZE = 255;
|