Lealone 是一个高度兼容 MongoDB 的文档数据库,可以使用 MongoDB 的各种客户端访问 Lealone。
-
Maven 3.8+
-
MongoDB 版本支持 4.x 到 7.x 系列
运行 mvn clean package -Dmaven.test.skip=true
生成 jar 包 target\lealone-mongo-plugin-6.0.1.jar
假设 jar 包的绝对路径是 E:\lealone\lealone-plugins\mongo\target\lealone-mongo-plugin-6.0.1.jar
也可以直接下载插件 lealone-mongo-plugin-6.0.1.jar
Lealone 只有一个 jar 包,下载下来之后随意放到一个目录即可
也可以从源代码构建最新版本,请阅读文档: 从源码构建 Lealone
打开一个新的命令行窗口,运行: java -jar lealone-6.0.1.jar
Lealone version: 6.0.1
Use default config
Base dir: ./lealone_data
Init storage engines: 5 ms
Init transaction engines: 46 ms
Init sql engines: 4 ms
Init protocol server engines: 13 ms
Init lealone database: 119 ms
TcpServer started, host: 127.0.0.1, port: 9210
Total time: 207 ms (Load config: 2 ms, Init: 201 ms, Start: 4 ms)
Exit with Ctrl+C
要停止 Lealone,直接按 Ctrl + C
打开一个新的命令行窗口,运行: java -jar lealone-6.0.1.jar -client
然后执行以下命令创建并启动插件:
create plugin mongo
implement by 'com.lealone.plugins.mongo.MongoPlugin'
class path 'E:\lealone\lealone-plugins\mongo\target\lealone-mongo-plugin-6.0.1.jar'
parameters (
port=27017, --端口号默认就是27017,如果被其他进程占用了可以改成别的
auto_start=false --如果 auto_start 为 true,执行 create plugin 后或启动数据库时都会自动启动插件
);
start plugin mongo;
要 stop 和 drop 插件可以执行以下命令:
stop plugin mongo;
drop plugin mongo;
执行 stop plugin 只是把插件对应的服务停掉,可以再次通过执行 start plugin 启动插件
执行 drop plugin 会把插件占用的内存资源都释放掉,需要再次执行 create plugin 才能重新启动插件
需要下载 MongoDB Shell 客户端
打开一个新的命令行窗口,运行: mongosh mongodb://127.0.0.1:27017/test
Connecting to: mongodb://127.0.0.1:27017/test?directConnection=true&serverSelectionTimeoutMS=2000&appName=mongosh+1.9.1
Using MongoDB: 6.0.1
Using Mongosh: 1.9.1
For mongosh info see: https://docs.mongodb.com/mongodb-shell/
test> db.runCommand({ insert: "c1", documents: [{ _id: 1, user: "u1", age: 12, status: "A"}] });
{ ok: 1, n: 1 }
test>
test> db.runCommand({ find: "c1", filter: {_id: 1} });
{
cursor: {
id: Long("0"),
ns: 'test.c1',
firstBatch: [ { _id: Long("1"), user: 'u1', age: 12, status: 'A' } ]
},
ok: 1
}
test>
test> db.runCommand({ update: "c1", updates: [ { q: { _id: 1 }, u: { $set: { user: "u11" } } }] });
{ ok: 1, n: 1, nModified: 1 }
test>
test> db.runCommand({"aggregate": "c1", "pipeline": [{"$match": {}}, {"$group": {"_id": 1, "n": {"$sum": 1}}}], "cursor": {}});
{
cursor: { id: Long("0"), ns: 'test.c1', firstBatch: [ { _id: 1, n: 1 } ] },
ok: 1
}
test>
test> db.runCommand({ delete: "c1", deletes: [ { q: { _id: 1 }, limit: 1 } ] });
{ ok: 1, n: 1 }
test>
test> db.runCommand({ find: "c1", filter: {_id: 1} });
{ cursor: { id: Long("0"), ns: 'test.c1', firstBatch: [] }, ok: 1 }
test>
MongoDB 各种命令的用法请参考 官方文档