NoSQL內戰:MongoDB與CouchDB查詢方式對比

來源:互聯網
上載者:User

BKJIA經典譯文】MongoDB和CouchDB都是面向文檔的資料庫,它們都使用JSON文檔格式,它倆通常都被看作是NoSQL資料庫,並且現在都很時髦,有很多的共同點,但談到查詢時,兩者的差別就很明顯了,CouchDB需要預定義視圖本質上是JavaScript MapReduce函數),而MongoDB支援動態查詢基本上和傳統關聯式資料庫上的即席查詢類似),更重要的是,談到查詢時,CouchDB的API是RESTful,而MongoDB的API更原生化,這意味著在代碼中發出一個查詢就要使用一個驅動。

例如,使用CouchDB時,為了插入一些資料,可以使用一些外部工具,如Groovy的RESTClient:

 
  1. import static groovyx.net.http.ContentType.JSON  
  2. import groovyx.net.http.RESTClient  
  3.    
  4. def client = new RESTClient("http://localhost:5498/")  
  5. response = client.put(path: "parking_tickets/1234334325",  
  6.   contentType: JSON,  
  7.   requestContentType:  JSON,  
  8.   body: [officer: "Robert Grey",  
  9.          location: "199 Castle Dr",  
  10.          vehicle_plate: "New York 77777",  
  11.          offense: "Parked in no parking zone",  
  12.          date: "2010/07/31"]) 

注意,在這種情況下,我必須為停車票指定一個編號1234334325),順便提一下,也可以要求CouchDB使用UUID,如向/_uuids路徑發出一個HTTP GET請求。

BKJIA編輯向您推薦:強勢的芒果:走進MongoDB

例如,如果我想找出由Officer Grey開出的所有票,我必須定義一個視圖,視圖是執行JavaScript MapReduce函數的簡單URL,因此我可以快速實現一個函數來提取officer屬性等於Robert Grey的所有文檔。

 
  1. function(doc) {  
  2.   if(doc.officer == "Robert Grey"){  
  3.     emit(null, doc);  
  4.   }  

我必須給這個視圖取一個名字,當我向這個視圖發出HTTP GET請求時,至少可以得到一個文檔。

 
  1. response = client.get(path: "parking_tickets/_view/by_name/officer_grey",  
  2.         contentType: JSON, requestContentType: JSON)  
  3.    
  4. assert response.data.total_rows == 1  
  5. response.data.rows.each{  
  6.    assert it.value.officer == "Robert Grey" 

總的來說,使用CouchDB時,我不能很快地發出一個即席RESTful調用查詢資訊,必須先定義一個查詢也叫視圖),然後將其暴露出來。相反,使用MongoDB時,它和大多數關聯式資料庫沒多大區別,你可以在運行時查詢你想要看到的任何資訊。

例如,下面是我使用MongoDB的原生Java驅動實現的停車票執行個體:

 
  1. DBCollection coll = db.getCollection("parking_tickets");  
  2. BasicDBObject doc = new BasicDBObject();  
  3.    
  4. doc.put("officer", "Robert Grey");  
  5. doc.put("location", "199 Castle Dr");  
  6. doc.put("vehicle_plate", "New York 77777");  
  7. //...  
  8. coll.insert(doc); 

假設以後我要查詢Robert Smith發出的停車票,只需要簡單修改一下officer屬性值就可以了,如:

 
  1. BasicDBObject query = new BasicDBObject();  
  2. query.put("officer", "Robert Smith");  
  3. DBCursor cur = coll.find(query);  
  4.  while (cur.hasNext()) {  
  5.    System.out.println(cur.next());  
  6.  } 

雖然MongoDB和CouchDB有很多相似之處,但在查詢方面的確有著本質的不同,CouchDB需要使用MapReduce,而MongoDB更多的是面向動態查詢,當然MongoDB也是支援MapReduce的。

原文標題:MongoDB and CouchDB: vastly different queries

延伸閱讀

您如果想瞭解

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.