在NeDB中,文档中的数组比多个文档更好吗?

时间:2017-07-15 11:06:12

标签: electron nedb nosql

我正在使用NeDB作为数据库制作电子应用程序 文件结构如下:

For a machine (<= 150 machines), I need to add a comment for the
machine regularly.

对于这种情况,哪种文件结构会更好

  1. 为机器制作1个文档并按下每个条目 到文档中的数组字段。

    {
     machine_no : string,  
     date: [Date],  
     comment: [string]  
    }
    
  2. 为每个条目创建一个包含machine_no的新文档。

    {
     machine_no : string,  
     date: Date,  
     comment: string  
    }  
    
  3. 我想要操作插入,查看&amp;更新现有数据 哪种文档结构对于这种情况更好?为什么?

0 个答案:

没有答案