From 55fd31eeb358d75911aa8f80efc2dbfa83fb5c4f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9C=B1=E5=A4=A9=E9=BE=99=20=28Armink=29?= Date: Sun, 28 May 2023 19:01:06 +0800 Subject: [PATCH] [fdb] update FDB_SECTOR_CACHE_TABLE_SIZE to 8 --- 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 5e7a78e..4f60812 100644 --- a/inc/fdb_def.h +++ b/inc/fdb_def.h @@ -32,7 +32,7 @@ extern "C" { /* the sector cache table size, it will improve KV save speed when using cache */ #ifndef FDB_SECTOR_CACHE_TABLE_SIZE -#define FDB_SECTOR_CACHE_TABLE_SIZE 4 +#define FDB_SECTOR_CACHE_TABLE_SIZE 8 #endif #if (FDB_KV_CACHE_TABLE_SIZE > 0) && (FDB_SECTOR_CACHE_TABLE_SIZE > 0)