加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
tiny_kvdb_cfg.h 1.11 KB
一键复制 编辑 原始数据 按行查看 历史
/**
*******************************************************************************
* @file tiny_kvdb_cfg.h
* @brief tiny key-value database config file.
*******************************************************************************
*/
/* Define to prevent recursive inclusion -------------------------------------*/
#ifndef __TINY_KVDB_CFG_H
#define __TINY_KVDB_CFG_H
#ifdef __cplusplus
extern "C"
{
#endif
/* Includes ------------------------------------------------------------------*/
/* Exported Defines ----------------------------------------------------------*/
#define TINY_KVDB_LOG_EN 1
#define TINY_KVDB_DEBUG_EN 0
#define TINY_KVDB_MAX_USERS 4 /* maximum instances of kvdb */
#define TINY_KVDB_USE_CACHE 1 /* use cache can greatly improve read/write speed */
#if TINY_KVDB_USE_CACHE
#define TINY_KVDB_CACHE_NUM 4
#endif
#define TINY_KVDB_BUFFER_SIZE 128 /* data buffer for read/write */
#ifdef __cplusplus
}
#endif
#endif
/******************************** END OF FILE *********************************/
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化