发布于 2015-06-16 06:18:19 | 131 次阅读 | 评论: 0 | 来源: 网友投递
MongoDB 分布式文件存储的数据库
MongoDB 是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。
虽然mongodb release notes页面显示的版本还是3.0.4-rc0,不过3.0.4正式版已经可以在mongodb的仓库中下载到了,详细的change log页面也可以看到版本号显示3.0.4。
此版本的更新大多是BUG修复和内部性能提升,对用户使用上并没什么影响。
Fix missed writes with concurrent inserts during chunk migration from shards with WiredTiger primaries: SERVER-18822
Resolve write conflicts with multi-update updates with upsert=true with the Wired Tiger Storage engine: SERVER-18213
Fix case where secondary reads could block replication: SERVER-18190
Improve performance on Windows with WiredTiger and documents larger than 16kb: SERVER-18079
Fix issue where WiredTiger data files are not correctly recovered following unexpected system restarts: SERVER-18316
更详细的更新内容参考 mongodb change log页面: http://docs.mongodb.org/manual/release-notes/3.0-changelog/。
MongoDB 是一个基于分布式文件存储的数据库。由C++语言编写。旨在为WEB应用提供可扩展的高性能数据存储解决方案。