1
0
mirror of https://github.com/armink/FlashDB.git synced 2025-01-16 20:12:52 +08:00

[kvdb] Change the KV name default length to 64.

This commit is contained in:
armink 2021-04-16 18:27:38 +08:00
parent a83f873323
commit c25198db19

View File

@ -22,7 +22,7 @@ extern "C" {
/* the KV max name length must less then it */
#ifndef FDB_KV_NAME_MAX
#define FDB_KV_NAME_MAX 32
#define FDB_KV_NAME_MAX 64
#endif
/* the KV cache table size, it will improve KV search speed when using cache */