书栈网 · BookStack 本次搜索耗时 0.011 秒,为您找到 52 个相关结果.
  • NeDB

    NeDB NeDB 1、安装模块 npm install nedb -- save 2、使用 // 加载模块 constnedb = require ( 'nedb' ); // 实例化连接对象(不带参数默认为内存数据库) constdb = newnedb ({ filename : '/data/save.db'...
  • NeDB

    950 2020-01-31 《NodeJs小册》
    NeDB 快速上手 安装NeDB 创建NeDB数据库 引入依赖 数据库初始化 数据操作 插入 查询 更新 删除 运行demo 下一步 NeDB 快速上手 NeDB 是使用 Node.js 实现的一个 NoSQL 嵌入式数据库操作模块,可以充当内存数据库,也可以用来实现本地存储,甚至可以在浏览器中使用。查询方式比较灵活,支持使...
  • Support NeDB development

    545 2020-01-15 《NeDB Document》
    Support NeDB development Support NeDB development No time to help out ? You can support NeDB development by sending money or bitcoins! Money: Bitcoin address: 1dDZLnWpBb...
  • Installation, tests

    501 2020-01-15 《NeDB Document》
    Installation, tests Installation, tests Module name on npm and bower is nedb . npm install nedb -- save # Put latest version in your package.json npm test ...
  • Use in other services

    574 2020-01-15 《NeDB Document》
    Use in other services Use in other services connect-nedb-session is a session store forConnect and Express, backed by nedb If you mostly use NeDB for logging purposes and don...
  • Adapters

    Database adapters Memory/Filesystem SQL NoSQL Database adapters Feathers database adapters are modules that provide services that implement standard CRUD functionality for...
  • Creating/loading a database

    1501 2020-01-15 《NeDB Document》
    Creating/loading a database Creating/loading a database You can use NeDB as an in-memory only datastore or as a persistent datastore. One datastore is the equivalent of a Mongo...
  • NoSQL

    NoSQL NoSQL 特点: Not only SQL; 没有声明性查询语言; 没有预定义的模式; 键-值对存储,列存储,文档存储,图形数据库; 最终一致性,而非 ACID 属性; 非结构化和不可预知的数据; CAP 定理 ; 高性能,高可用性和可伸缩性; 是一个新的、令人兴奋的技术,并不是十分成熟; 从其特点分析,最适合无固定要求的组织数据...
  • Browser version

    963 2020-01-15 《NeDB Document》
    Browser version Browser version The browser version and its minified counterpart are in the browser-version/out directory. You only need to require nedb.js or nedb.min.js in...
  • Generating a service

    Creating a service Generating a service The generated files Testing the API What’s next? Creating a service Now that we have our Feathers application generated , we can cre...