cg小白兔 发表于 2024-3-5 14:04:05

MongoDB Integration plugin 1.0适配UE4.26













The MongoDB Integration Plugin lets you store and retrieve data from your MongoDB Server. Build your own queries select, update and delete data to your database directly from Blueprints. All queries work asynchronously in a separate thread. You can also create new collections and databases.

MongoDB is an open source database that uses a document-oriented data model and a non-structured query language. It is one of the most powerful NoSQL systems and databases around todayBeing a NoSQL tool means it does not use the usual rows and columns that we so much associate with the relational database management. It is an architecture that is built on collections and documents. The basic unit of data in this database consists of a set of key-value pairs.

It allows documents to have different fields and structures. This database uses a document storage format called BSON which is a binary style of JSON style documents.

技术细节
Features:
Write Insert , Update and Delete Queries to modify data in the MongoDB Server. Create and Drop Database and Collections directly from Blueprints.
All database operations are performed asynchronously.
Depending on query result size, hundreds of queries can execute at once without any noticeable lag on the game thread.
Supported mongoDB element types: document, array, int, float, string, datetime, bool.
Number of C++ Classes: 5
Network Replicated: No
Supported Development Platforms: Win32, Win64
Supported Target Build Platforms: Win64


MongoDB 集成插件可让您从 MongoDB 服务器中存储和检索数据。您可以直接从 Blueprints 中创建自己的查询,选择、更新和删除数据库中的数据。所有查询都在单独的线程中异步运行。您还可以创建新的集合和数据库。

MongoDB 是一种开源数据库,使用面向文档的数据模型和非结构化查询语言。它是当今最强大的 NoSQL 系统和数据库之一。作为一个 NoSQL 工具,它不使用关系数据库管理中常见的行和列。它是一种建立在集合和文档基础上的架构。该数据库的基本数据单位由一组键值对组成。

它允许文档具有不同的字段和结构。该数据库使用一种名为 BSON 的文档存储格式,它是 JSON 风格文档的二进制样式。

技术细节
技术细节
编写插入、更新和删除查询,以修改 MongoDB 服务器中的数据。直接从蓝图中创建和删除数据库和集合。
异步执行所有数据库操作。
根据查询结果的大小,可同时执行数百个查询,而游戏线程不会出现任何明显的延迟。
支持的 mongoDB 元素类型:document、array、int、float、string、datetime、bool。
C++ 类的数量 5
网络复制: 无
支持的开发平台:Win32、Win64 Win32, Win64
支持目标构建平台: Win64





页: [1]
查看完整版本: MongoDB Integration plugin 1.0适配UE4.26