Document-oriented database(文档数据库)

前言:

关系型数据库已经红火了很久,但是其弊端也是显而易见的,对于很多非结构数据以及半结构化数据很难有效地管理,而且RDBMS的固定式的Schema往往很难接受,太呆板不灵活,因此基于可自由伸缩的schema的数据库随之而来了,这个就是文档数据库,伴随着云计算技术的发展,支持MapReduce以及多点复制、反向搜索引擎技术的文档数据库正在渐渐地成为了主流,其中的开源娇娇者有 Hadoop,  CouchDB, MongoDB等众多的数据库,不过各个数据都有自己的特点。

 

Wikipedia论述:

A document-oriented database is a computer program designed for document-oriented applications. These systems may be implemented as a layer above arelational database or an object database.

For example here's a document:

FirstName="Bob", Address="5 Oak St.", Hobby="sailing".

Another document could be:

FirstName="Jonathan", Address="15 Wanamassa Point Road", Children=[{Name:"Michael",Age:10}, {Name:"Jennifer", Age:8}, {Name:"Samantha", Age:5}, {Name:"Elena", Age:2}].

Notice that both documents have some similar information and some different - but unlike a relational database where each record would have the same set of fields and unused fields might be kept empty, there are no empty 'fields' in either document (record) in this case. This system allows new information to be added and it doesn't require explicitly stating if other pieces of information are left out, as in relational databases.

It is noteworthy here that using XML, YAML or JSON for information storage has advantages similar to document oriented database. In these languages each record can have a non-standard amount of information. Such information is properly calledsemi structured data.

Another advantage of document oriented databases is the ease of usage and programming so that untrained business users, for example, can create applications and design their own databases. Information can be added without worrying about the "record size" and so programmers simply need to build an interface to allow the information to be entered easily.

Contents

[hide]

Implementations

Name↓Publisher↓License↓Language↓Notes↓RESTful API↓
Lotus NotesIBMProprietary  (unknown)
askSamaskSam SystemsProprietary  (unknown)
ApstrataApstrataProprietary  (unknown)
DatawaspSignificant Data SystemsProprietary  (unknown)
CRXDay SoftwareProprietary  (unknown)
MUMPS Database[1] Proprietary and GNU Affero GPL[2]MUMPSCommonly used in health applications.(unknown)
UniVerseRocket SoftwareProprietary  Yes (Beta)
UniDataRocket SoftwareProprietary  Yes (Beta)
JackrabbitApacheApache LicenseJava (unknown)
CouchDBApacheApache LicenseErlangJSON over HTTPYes
FleetDBFleetDBMIT LicenseClojureA JSON-based schema-free database optimized for agile development.(unknown)
MongoDB GNU AGPL v3.0[3]C++Fast, document-oriented database optimized for highly transient data.(unknown)
GemFire Enterprise[2]VMWareCommercialJava, .NET, C++Memory-oriented, fast, key-value database with indexing and querying support.Yes
OrientDBOrientDBApache LicenseJavaJSON over HTTPYes
RavenDBRavenDBcommercial or GNU AGPL v3.0.NETA .NET LINQ-enabled Document Database, focused on providing high performance, transactional, schema-less, flexible and scalable NoSQL data store for the .NET and Windows platforms.Yes
Redis BSD LicenseANSI CKey-value store supporting lists and sets with fast, simple and binary-safe protocol.(unknown)
StrokeDB[3]MIT License Alpha software.(unknown)
Terrastore Apache LicenseJavaJSON/HTTP(unknown)
ThruDB BSD LicenseC++, JavaBuilt on top of Apache Thrift framework that provides indexing and document storage services for building and scaling websites. Alternate implementation is being developed in Java.Alpha software.(unknown)
PerseverePersevereBSD License A JSON database and JavaScript Application Server. Provides RESTful JSON interface for Create, read, update, and delete access to data. Also supports JSONQuery/JSONPath querying.Yes
DBSlayerDBSlayerApache LicenseCdatabase abstraction layer (overMySQL) used by the New York Times. JSON over HTTP.(unknown)
Eloquera DBEloqueraProprietary.NETHigh performance. Based on Dynamic objects. Supports LINQ, SQL queries.(unknown)


XML database implementations

All XML databases are document-oriented databases.

An XML database is a data persistence software system that allows data to be stored in XML format. This data can then be queried, exported and serialized into the desired format.

Two major classes of XML database exist:

  1. XML-enabled: these map all XML to a traditional database (such as arelational database[4]), accepting XML as input and rendering XML as output. This term implies that the database does the conversion itself (as opposed to relying on middleware).
  2. Native XML (NXD): the internal model of such databases depends on XML and uses XML documents as the fundamental unit of storage, which are, however, not necessarily stored in the form of text files.

Rationale for XML in databases

O'Connell (2005, 9.2) gives one reason for the use of XML in databases: the increasingly common use of XML fordata transport, which has meant that "data is extracted from databases and put into XML documents and vice-versa". It may prove more efficient (in terms of conversion costs) and easier to store the data in XML format.

Native XML databases

The term "native XML database" (NXD) can lead to confusion. Many NXDs do not function as standalone databases at all, and do not really store the native (text) form.

The formal definition from the XML:DB initiative (which appears to be inactive since 2003[5]) states that a native XML database:

  • Defines a (logical) model for an XML document — as opposed to the data in that document — and stores and retrieves documents according to that model. At a minimum, the model must include elements, attributes,PCDATA, and document order. Examples of such models include theXPath data model, the XML Infoset, and the models implied by the DOM and the events in SAX 1.0.
  • Has an XML document as its fundamental unit of (logical) storage, just as arelational database has a row in a table as its fundamental unit of (logical) storage.
  • Need not have any particular underlying physical storage model. For example, NXDs can use relational,hierarchical, or object-oriented database structures, or use a proprietary storage format (such as indexed, compressed files).

Additionally, many XML databases provide a logical model of grouping documents, called "collections". Databases can set up and manage many collections at one time. In some implementations, a hierarchy of collections can exist, much in the same way that an operating system's directory-structure works.

All XML databases now[update] support at least one form of querying syntax. Minimally, just about all of them support XPath for performing queries against documents or collections of documents. XPath provides a simple pathing system that allows users to identify nodes that match a particular set of criteria.

In addition to XPath, many XML databases support XSLT as a method of transforming documents or query-results retrieved from the database. XSLT provides adeclarative language written using an XML grammar. It aims to define a set of XPathfilters that can transform documents (in part or in whole) into other formats includingPlain text, XML, or HTML.

Many XML databases also support XQuery to perform querying. XQuery includes XPath as a node-selection method, but extends XPath to provide transformational capabilities. Users sometimes refer to its syntax as "FLWOR" (pronounced 'Flower') because the query may include the following clauses: 'for', 'let', 'where', 'order by' and 'return'. Traditional RDBMS vendors (who traditionally had SQL only engines), are now shipping with hybrid SQL and XQuery engines. Hybrid SQL/XQuery engines help to query XML data alongside the relational data, in the same query expression. This approach helps in combining relational and XML data.

Some XML databases support an API called the XML:DB API (or XAPI) as a form of implementation-independent access to the XMLdatastore. In XML databases, XAPI resemblesODBC and JDBC as used with relational databases. On the 24th of June 2009, The Java Community Process released the final version of the XQuery API for Java specification (XQJ) - "a common API that allows an application to submit queries conforming to the W3C XQuery 1.0 specification and to process the results of such queries".

XML Databases with database APIs (XQJ, XML:DB, RESTful)

XML Database↓License↓Language↓XQJ API↓XML:DB API↓RESTful API↓
BaseXBSD LicenseJava Yes Yes Yes
xDBCommercialJava Yes No No
eXistLGPL LicenseJava Yes Yes Yes
MarkLogic ServerCommercialC++ Yes No Yes
MonetDB/XQueryProprietaryC++ No Yes No
OracleCommercialC++ Yes No No
SednaApache LicenseC++ Yes Yes No

References

  1. ^ Extreme Database programming with MUMPS Globals
  2. ^ GTM MUMPS FOSS on SourceForge
  3. ^ [1]
  4. ^ Mustafa Atay and Shiyong Lu, “Storing and Querying XML: An Efficient Approach Using Relational Databases”,ISBN 3-639-11581-3, VDM Verlag, 2009.
  5. ^ http://xmldb-org.sourceforge.net/faqs.html

External references

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值