我正在使用NeDB作为数据库制作电子应用程序 文件结构如下:
For a machine (<= 150 machines), I need to add a comment for the
machine regularly.
对于这种情况,哪种文件结构会更好
为机器制作1个文档并按下每个条目 到文档中的数组字段。
{
machine_no : string,
date: [Date],
comment: [string]
}
为每个条目创建一个包含machine_no的新文档。
{
machine_no : string,
date: Date,
comment: string
}
我想要操作插入,查看&amp;更新现有数据 哪种文档结构对于这种情况更好?为什么?