程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> DB2數據庫 >> DB2教程 >> OrientDB 0.9.14 發布,可伸縮的文檔數據庫

OrientDB 0.9.14 發布,可伸縮的文檔數據庫

編輯:DB2教程
OrIEnt DB 是一個可伸縮的文檔數據庫,支持 ACID 事務處理。使用 Java 5 實現。

  Example of usage:

// OPEN THE DATABASE 
ODatabaseDocumentTx db = new ODatabaseDocumentTx("remote:localhost/petshop").open("admin", "admin"); 
 
// CREATE A NEW DOCUMENT AND FILL IT 
ODocument doc = new ODocument("Person"); 
doc.fIEld( "name", "Luke" ); 
doc.fIEld( "surname", "Skywalker" ); 
doc.field( "city", new ODocument("City" ).field("name","Rome").fIEld("country", "Italy") ); 
        
// SAVE THE DOCUMENT 
doc.save(); 
 
// QUERY THE DOCUMENT 
List<ODocument> result = database.query( 
 new OSQLSynchQuery>("select * from person where city.name = 'Rome'")).execute(); 
 
// PRINT THE RESULT SET 
for( ODocument d : result ){ 
 System.out.println("Person: " + d.field( "name" ) + d.fIEld( "surname" )); 
} 
 
db.close();

  Deeply scalable Document based DBMS. It's the basic engine of all the Orient products. It can work in schema-less mode, schema-full or a mix of both. Supports advanced features, such as ACID transactions, indexing, fluent and SQL-like querIEs. It handles natively JSON and XML documents.

  Main features:

  * Extremely light: less than 400Kb for the full server.

  * Run on any platform: All the engine is 100% pure Java and can run on Windows and Linux and any system that supports the Java5+ technology

  * Super fast: On common hardware* stores up to 150.000 (one-hundred-fifty-thousands) records per second, 13 billions per day.

  * Transactional: Compliant with ACID tests, supports Optimistic (MVCC) and Pessimistic transaction modes

  * Local mode: Direct Access to the database bypassing the Server. Perfect for scenariOS where the database is embedded.

  * Easy Java APIs: Learn how to use it in 15 minutes.

  Changes:

  1. adds a new Database structure,

  2. integrates logical clusters well at the storage level,

  3. improves OrientDB Studio with authentication, users, roles, clusters, db and... server propertIEs, etc.,

  4. adds new User and Role management,

  5. adds more flexible management of types in ODocument instances,

  6. supports HTTP basic authentication,

  7. fixes some bugs in concurrency with a high number of clIEnts

  OrIEntDB 0.9.14下載地址:http://code.google.com/p/orIEnt/downloads/list

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved