书栈网 · BookStack 本次搜索耗时 0.012 秒,为您找到 52 个相关结果.
  • 数据库操作

    1167 2020-01-31 《NodeJs小册》
    nodejs 操作数据库 nodejs 操作数据库 NeDB SQLite MongoDB 环境准备 快速上手
  • 1、new Datastore(options)

    1、new Datastore(options) 1、new Datastore(options) 作用: 初始化一个数据存储,相当于 MongoDB 的一个集合、Mysql 的一张表。 options 对象配置参数: ① filename(可选): 数据存储文件路径。如果为空,数据将会自动存储在内存中。注意路径不能以“~” 结尾。 ② ...
  • Front-end Data Storage Tools

    Front-End Data Storage Tools (i.e. Data storage solution in the client) Front-End Data Storage Tools (i.e. Data storage solution in the client) AlaSQL Dexie.js ForerunnerDB ...
  • 四、选择

    四、选择 关系型数据库 非关系型数据库 RDBMS NoSQL 四、选择 之所以写该节,是因为本文介绍 NeDB,但并不是推荐 NeDB。选取什么样的数据库主要取决于项目以及个人情感。由于涉及到 SQL 数据库与 NoSQL 数据库的概念,所以先从大的方面简单说一下,然后再介绍 Node 嵌入式数据库。 先简单回顾下数据库的分类。 数据...
  • Indexing

    865 2020-01-15 《NeDB Document》
    Indexing Indexing NeDB supports indexing. It gives a very nice speed boost and can be used to enforce a unique constraint on a field. You can index any field, including fields ...
  • 7、db.ensureIndex(options, callback)

    7、db.ensureIndex(options, callback) 7、db.ensureIndex(options, callback) 作用: NeDB 支持索引。索引可以提高查询速度以及保证字段的唯一性。索引可以用在任何字段,包括嵌套很深的字段。目前,索引只能用来加速基本查询以及使用 $in, $lt, $lte, $gt 和 $gte...
  • 2、db.insert(doc, callback)

    2、db.insert(doc, callback) 2、db.insert(doc, callback) 作用: 插入文档数据 (文档相当于 mysql 表中的一条记录)。如果文档不包含_id 字段,NeDB 会自动生成一个,该字段是 16 个字符长度的数字字符串。该字段一旦确定,就不能被更改。 参数: doc: 支持 String, N...
  • Bug reporting guidelines

    462 2020-01-15 《NeDB Document》
    Bug reporting guidelines Bitcoins Bug reporting guidelines If you report a bug, thank you! That said for the process to be manageable please strictly adhere to the following g...
  • 七、性能

    性能 性能 在普通机器上,对于 1 万条记录 NeDB 吞吐量 (带索引): Insert: 5950 ops Find: 25440 ops Update: 4490 ops Remove: 6620 ops
  • 前端数据存储工具

    前端数据存储工具(即客户端的数据存储解决方案) 前端数据存储工具(即客户端的数据存储解决方案) AlaSQL Dexie.js LocalForage LokiJS Lovefield lowdb Pouchdb NeDB RxDB