MySQL和server有一些令人敬畏的桌面本地工具,可以快速临时地查询和更新数据库,从而获得巨大的性能收益(具体而言,例如。( Navicat和Server)
RethinkDB有一个内置的“数据资源管理器”;但是,对于使用鼠标-specifically戳入数据来说,这确实不是最理想的,所有查询都需要手工编写完整的JS语句。
除了web管理工具的“数据资源管理器”之外,是否有任何高杠杆的桌面GUI工具可用于窥探RethinkDB的数据?
发布于 2016-07-11 15:13:20
试试这个:RethinkDB GUI客户端 for Mac,Windows和Linux
ReQLPro是免费的桌面GUI,它是为填补RethinkDB的空白而构建的。现在它主要涵盖了“用鼠标戳数据”需要你去寻找。它仍在积极开发,并寻求反馈意见,以帮助确定路线图的优先次序。
它是一个电子应用程序,运行在Mac、Windows (在Windows 10上测试)和Linux (在ubuntu 14.04LTS 64位上测试)
目前可用的基本功能如下:
下面是一个屏幕截图,突出了这个应用程序的外观和感觉:

免责声明:我帮助构建和管理这个应用程序。
发布于 2021-11-12 12:28:09
A RethingDb列出的第三方管理工具似乎都过时了:
https://rethinkdb.com/docs/third-party-admin-tools/
同为
https://github.com/GaryChangCN/NiRethink
最近的一次似乎是城堡(最近一次改变是5年前)。然而,它似乎并没有提供比重新思考web更多的内容:
https://github.com/neumino/chateau
npm install chateou
chateou -f config.js示例config.js:
// RethinkDB settings
exports.host = 'localhost'; // RethinkDB host
exports.port = 28015; // RethinkDB driver port
exports.authKey = ''; // Authentification key (leave an empty string if you did not set one)
// Express settings
exports.expressPort = 3000; // Port used by express
exports.debug = true; // Debug mode
exports.network = '127.0.0.1' // Network the node app will run on在浏览器中打开城堡
http://localhost:3000

蒙哥大。
https://www.navicat.com/en/products
https://dbeaver.com/databases/
CockroachDB,雪花,Cassandra,Redis,Vertica,MongoDb
https://docs.tableplus.com/#supported-databases
看见
C.关于RethinkDb附带的web ui的详细信息:
https://rethinkdb.com/docs/administration-tools/
开场白:
http://localhost:8080
或者使用docker命令调整端口,例如,在web ui中使用端口8070而不是8080:
docker run -it -p 8070:8080 -p 28015:28015 -p 29015:29015 --name rethinkdb rethinkdbweb的屏幕截图,显示其数据资源管理器:

https://softwarerecs.stackexchange.com/questions/23318
复制相似问题