您好,登錄后才能下訂單哦!
如何在mongodb中使用driver?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
MongoDB 是一個基于分布式文件存儲的數據庫。由 C++ 語言編寫。旨在為 WEB 應用提供可擴展的高性能數據存儲解決方案。
MongoDB 是一個介于關系數據庫和非關系數據庫之間的產品,是非關系數據庫當中功能最豐富,最像關系數據庫的。
1 環境準備
創建工程,并添加以下依賴:
<dependency> <groupId>org.mongodb</groupId> <artifactId>mongodb-driver</artifactId> <version>3.10.1</version> </dependency>
2 使用mongodb-driver
2.1 查詢所有
@Test public void test1() { //創建連接 MongoClient client = new MongoClient("192.168.200.128"); //打開數據庫 MongoDatabase commentdb = client.getDatabase("commentdb"); //獲取集合 MongoCollection<Document> comment = commentdb.getCollection("comment"); //查詢 FindIterable<Document> documents = comment.find(); //查詢記錄獲取文檔集合 for (Document document : documents) { System.out.println("_id:" + document.get("_id")); System.out.println("內容:" + document.get("content")); System.out.println("用戶ID:" + document.get("userid")); System.out.println("點贊數:" + document.get("thumbup")); } //關閉連接 client.close(); } }
2.2 根據_id查詢
每次使用都要用到MongoCollection
,進行抽取:
private MongoClient client; private MongoCollection<Document> comment; @Before public void init() { //創建連接 client = new MongoClient("192.168.200.128"); //打開數據庫 MongoDatabase commentdb = client.getDatabase("commentdb"); //獲取集合 comment = commentdb.getCollection("comment"); } @After public void after() { client.close(); } @Test public void test2() { //查詢 FindIterable<Document> documents = comment.find(new BasicDBObject("_id", "1")); //查詢記錄獲取文檔集合 for (Document document : documents) { System.out.println("_id:" + document.get("_id")); System.out.println("內容:" + document.get("content")); System.out.println("用戶ID:" + document.get("userid")); System.out.println("點贊數:" + document.get("thumbup")); } }
2.3 新增
@Test public void test3() { Map<String, Object> map = new HashMap(); map.put("_id", "6"); map.put("content", "很棒!"); map.put("userid", "9999"); map.put("thumbup", 123); Document document = new Document(map); comment.insertOne(document); }
2.4 修改
@Test public void test4() { //修改的條件 Bson filter = new BasicDBObject("_id", "6"); //修改的數據 Bson update = new BasicDBObject("$set", new Document("userid", "8888")); comment.updateOne(filter, update); }
2.5 刪除
@Test public void test5() { //刪除的條件 Bson filter = new BasicDBObject("_id", "6"); comment.deleteOne(filter); }
MongoDB優勢與劣勢
優勢:
1、在適量級的內存的MongoDB的性能是非常迅速的,它將熱數據存儲在物理內存中,使得熱數據的讀寫變得十分快。
2、MongoDB的高可用和集群架構擁有十分高的擴展性。
3、在副本集中,當主庫遇到問題,無法繼續提供服務的時候,副本集將選舉一個新的主庫繼續提供服務。
4、MongoDB的Bson和JSon格式的數據十分適合文檔格式的存儲與查詢。
劣勢:
1、 不支持事務操作。MongoDB本身沒有自帶事務機制,若需要在MongoDB中實現事務機制,需通過一個額外的表,從邏輯上自行實現事務。
2、 應用經驗少,由于NoSQL興起時間短,應用經驗相比關系型數據庫較少。
3、MongoDB占用空間過大。
關于如何在mongodb中使用driver問題的解答就分享到這里了,希望以上內容可以對大家有一定的幫助,如果你還有很多疑惑沒有解開,可以關注億速云行業資訊頻道了解更多相關知識。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。