From c25198db1920bd1e81315494f6101d7f0b4e5e71 Mon Sep 17 00:00:00 2001 From: armink Date: Fri, 16 Apr 2021 18:27:38 +0800 Subject: [PATCH] [kvdb] Change the KV name default length to 64. --- inc/fdb_def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/inc/fdb_def.h b/inc/fdb_def.h index 0fe43a3..29c3eb1 100644 --- a/inc/fdb_def.h +++ b/inc/fdb_def.h @@ -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 */