优势说明

mongoDB作为文档型数据库,比关系型数据库更加擅长存放复杂类型的数据。关系型数据库在定义表结构时三范式要求每一个单元格数据表示的信息是不可以再分割的。而mongoDB则是运行集合下的属性可以是一个数据项一个对象或者是一个数组。

使用场景

用关系型数据库来记录(文章,评论,点赞信息,文章附件)信息时我们需要建立四张表来维持它们之间的关系。分别是文章表,评论表,点赞表,附件表,其中评论表、点赞表和附件表都持有文章表主键。而使用mongoDB时我们只需要一个文章集合就可以,这个集合包括,文章内容属性,文章发表时间属性,文件状态属性,评论数组属性,点赞数组属性,文章附件数组属性。

这样的系统通常的操作是先查询文章列表,再根据用户选择查询某一篇文章的详细信息,详细信息中包括文章内容,附件,点赞信息和评论信息。这样的需要使用关系型数据库也可以很好地胜任,只是在查询详细信息时使用关联从四个表中获取数据。但是我们如果把需求再提升一下,我们需要在文章列表中就展示文章内容、评论、附件和点赞信息,这样的需要也是存在的,比如微信的朋友圈就是这样。这是使用关系型数据库就有些不那么方便了,需要先从文章表中查询出文章列表,在根据每一个文章的主键到其他表中获取信息。这时如果列表要求显示10条记录,就需要执行11次的sql语句。而在这样的需求下mongoDB任然是只需要执行一次查询就可以获取到全部数据。

需要克服的问题

大部分的同行对关系型数据使用的熟练度大大地高于mongoDB的熟练度,所有在使用mongoDB开发以上需要的系统时,需要克服以下几个问题。

新增数据

使用脚本操作

[javascript] view plain copy

 
  1. db.message.insert({  
  2.     “_id” : 5.0,  
  3.     “content” : “心情超级很好,这是美好的一天。。。”,  
  4.     “createTime” : ISODate(“2018-05-24T12:45:43.302+08:00”),  
  5.     “userName” : “caifu”,  
  6.     “attachments” : [  
  7.         {  
  8.             “url” : “http://test123/123.jpg”,  
  9.             “name” : “123.jpg”  
  10.         },  
  11.         {  
  12.             “url” : “http://test123/1234.jpg”,  
  13.             “name” : “1234.jpg”  
  14.         }  
  15.     ]  
  16.   
  17. })  

使用JAVA操作

[java] view plain copy

 
  1. import org.springframework.data.mongodb.core.MongoTemplate;  

https://my.oschina.net/u/3881961/blog/1827121
https://my.oschina.net/u/3881961/blog/1827118
https://my.oschina.net/u/3881961/blog/1827110
https://my.oschina.net/u/3881961/blog/1827107

[java] view plain copy

 
  1. mongoTemplate.insert(message,“message”);  

向文章中添加评论

使用脚本操作

[javascript] view plain copy

 
  1. db.message.update(   
  2. { _id: 5 },   
  3. { $addToSet: { comments: {  
  4.             “_id”:“123245”,  
  5.             “user” : “cai”,  
  6.             “createTime” : ISODate(“2018-05-29T10:32:46.209+08:00”),  
  7.             “content”:“一起出去玩呀”,  
  8.             “status”:0    
  9.         } } }   
  10. )  

 

[javascript] view plain copy

 
  1.   

使用JAVA操作

[java] view plain copy

 
  1. import org.springframework.data.mongodb.core.query.Criteria;  
  2. import org.springframework.data.mongodb.core.query.Query;  
  3. import org.springframework.data.mongodb.core.query.Update;  
[java] view plain copy

 
  1. Query query = Query.query(Criteria.where(“_id”).is(messageId));  
  2. Update update = new Update();  
  3. update.addToSet(“replies”, reply);  
  4. mongoTemplate.upsert(query, update, “message”);  

删除评论

使用JAVA操作,这个操作会在数组中用null替换掉原来的数据,建议使用逻辑删除

[java] view plain copy

 
  1. Query query = Query.query(Criteria.where(“_id”).is(messageId)  
  2. <span style=“white-space:pre;”> </span>.and(“replies._id”).is(replyId));  
  3. Update update = new Update();  
  4. update.unset(“replies.$”);  
  5. mongoTemplate.updateFirst(query, update, “message”);  

修改评论

使用JAVA操作,这个操作可以作为逻辑删除

[java] view plain copy

 
  1. Query updateQuery = Query.query(Criteria.where(“_id”).is(messageId).and(“comments._id”).is(commentId));  
  2. Update update = new Update();  
  3. update.set(“comments.$.status”, 1);  
  4. cloudChairmanMongo.upsert(updateQuery, update, CLOUDCHAIRMANMESSAGE);  

查询部分评论和总的赞数,排序等等等。。。

[javascript] view plain copy

 
  1. db.message.aggregate([  
  2.     {$match:{messageType:2,status:0}},  
  3.     { $sort: { createDate : -1 } },  
  4.     { $skip: 0 },  
  5.     { $limit: 30},  
  6.     {“$project”:{  
  7.         content:1,  
  8.         messageType:1,  
  9.         createDate:1,  
  10.         likes:1,  
  11.         createUserId:1,  
  12.         createUserName:1,  
  13.         nowDate:1,  
  14.         picUrls:1,  
  15.         status:1,  
  16.         likess:“$likes.createUserId”,  
  17.         comments:{$filter:{input:“$comments”,as:“comment”,cond:{$eq:[“$$comment.status”,0]}}}  
  18.         }  
  19.     },  
  20.     {$addFields: {  
  21.         likeCount: { $size: “$likes” },  
  22.         myLike:{$in: [“d98f735b-6a78-4fb8-a824-1e40138b58d6”,‘$likess’]},  
  23.         likes:{ $slice: [‘$likes’, -30, 30]}  
  24.         }  
  25.     },  
  26.     {  
  27.         “$project”:{  
  28.             likess:0  
  29.         }  
  30.     }  
  31.       
  32. ])  

使用JAVA操作

[java] view plain copy

 
  1. import static org.springframework.data.mongodb.core.aggregation.Aggregation.*;  
  2. import org.springframework.data.mongodb.core.aggregation.Aggregation;  
  3. import org.springframework.data.mongodb.core.aggregation.AggregationResults;  
  4. import org.springframework.data.mongodb.core.query.Criteria;  

 

[java] view plain copy

 
  1. Criteria matchCriteria = new Criteria();  
  2. matchCriteria = matchCriteria.where(“status”).is(0);      
  3. DBObject condition = new BasicDBObject();  
  4. condition.put(“$eq”,new Object[]{“$$comment.status”,0});  
  5. Aggregation agg = newAggregation(  
  6.         match(matchCriteria),  
  7.         sort(new Sort(new Sort.Order(Sort.Direction.DESC, “createDate”))),  
  8.         skip(skip),  
  9.         limit(limit),  
  10.         project(“createUserHeadurl”,“content”,“messageType”,“createDate”,“likes”,“createUserId”,“createUserName”,“nowDate”,“picUrls”,“status”)  
  11.                 .andExpression(“likes.createUserId”).as(“likess”)  
  12.                 .andExpression(“filter(comments,[0],[1])”,“comment”,condition).as(“comments”),  
  13.         project(“createUserHeadurl”,“content”,“messageType”,“createDate”,“createUserId”,“createUserName”,“nowDate”,“picUrls”,“status”,“likess”)  
  14.                 .andExpression(“size(likes)”).as(“likeCount”)  
  15.                 .andExpression(“in([0],likess)”,currentUserId).as(“userLike”)  
  16.                 .andExpression(“slice(likes,-30,30)”).as(“likes”)  
  17.                 .andExpression(“slice(comments,-30,30)”).as(“comments”)  
  18. );  
  19. AggregationResults<MessageDto> results  = cloudChairmanMongo.aggregate(agg,“message”,MessageDto.class);  
  20. List<MessageDto> list = results.getMappedResults();  

查询最近30条点赞和评论信息

脚本

[javascript] view plain copy

 
  1. db.message.aggregate([  
  2.     {$addFields:{allComments:{$concatArrays:[‘$comments’,‘$likes’]}}},  
  3.     {$unwind:{path:“$allComments”}},  
  4.     {$project:{allComments:1,  
  5.                 “content”:1,  
  6.                 “picUrls”:1,  
  7.                 “status”:1  
  8.     }},  
  9.     {$sort:{“allComments.createDate”:-1}},  
  10.     {$match:{“allComments.status”:0,“status”:0}},  
  11.     {$limit:30}  
  12. ])  


java代码

[html] view plain copy

 
  1. Criteria matchCriteria = new Criteria();  
  2. matchCriteria = matchCriteria.where(“status”).is(0).and(“allComments.status”).is(0);  
  3. Aggregation agg = newAggregation(  
  4.     project(“content”,”createDate”,”createUserHeadurl”,”createUserId”,”createUserName”,”messageType”,”status”,”picUrls”)  
  5.             .andExpression(“concatArrays(comments,likes)”).as(“allComments”),  
  6.     unwind(“allComments”),  
  7.     match(matchCriteria),  
  8.     sort(new Sort(new Sort.Order(Sort.Direction.DESC, “allComments.createDate”))),  
  9.     skip(skip),  
  10.     limit(limit)  
  11. );  
  12. AggregationResults<MessageWithCommentDtoresults  = cloudChairmanMongo.aggregate(agg,”message”,MessageWithCommentDto.class);  
  13. List<MessageWithCommentDtolist = results.getMappedResults();  

 

获取评论和点赞个数

java代码

[java] view plain copy

 
  1. Criteria matchCriteria = new Criteria();  
  2. matchCriteria = matchCriteria.where(“status”).is(0).and(“allComments.status”).is(0);  
  3. Aggregation agg = newAggregation(  
  4.         project(“status”)  
  5.                 .andExpression(“concatArrays(comments,likes)”).as(“allComments”),  
  6.         unwind(“allComments”),  
  7.         match(criteria),  
  8.         count().as(“count”)  
  9. );  
  10. AggregationResults<DBObject> results  = cloudChairmanMongo.aggregate(agg,“message”,DBObject.class);  
  11. List<DBObject> list = results.getMappedResults();  
  12. if(list!=null && list.size()>0){  
  13.     Integer obj = (Integer) list.get(0).get(“count”);  
  14.     return obj;  
  15. }  

以上是使用还可以使用spring-data-mongoDB操作mongoDB,还可以使用原生java操作mongoDB

原生java操作mongoDB

[java] view plain copy

 
  1. import com.mongodb.AggregationOutput;  
  2. import com.mongodb.BasicDBObject;  
  3. import com.mongodb.DBObject;  
[java] view plain copy

 
  1. List<DBObject> pipelines = new ArrayList<>();  
  2. DBObject match = new BasicDBObject();  
  3. DBObject sort = new BasicDBObject();  
  4. DBObject skip = new BasicDBObject();  
  5. DBObject limit = new BasicDBObject();  
  6. DBObject project = new BasicDBObject();  
  7. DBObject addFields = new BasicDBObject();  
  8. DBObject reProject = new BasicDBObject();  
  9.   
  10. DBObject matchCondition = new BasicDBObject();  
  11. matchCondition.put(“status”,0);  
  12. matchCondition.put(“messageType”,2);  
  13. match.put(“$match”, matchCondition);  
  14.   
  15. DBObject sortCondition = new BasicDBObject();  
  16. sortCondition.put(“createDate”,-1);  
  17. sort.put(“$sort”,sortCondition);  
  18.   
  19. skip.put(“$skip”,80);  
  20. limit.put(“$limit”,10);  
  21.   
  22. DBObject projectCondition = new BasicDBObject();  
  23. projectCondition.put(“comments”,1);  
  24. projectCondition.put(“content”,1);  
  25. projectCondition.put(“messageType”,1);  
  26. projectCondition.put(“createDate”,1);  
  27. projectCondition.put(“likes”,1);  
  28. projectCondition.put(“createUserId”,1);  
  29. projectCondition.put(“createUserName”,1);  
  30. projectCondition.put(“nowDate”,1);  
  31. projectCondition.put(“picUrls”,1);  
  32. projectCondition.put(“status”,1);  
  33. projectCondition.put(“likess”,“$likes.createUserId”);  
  34. project.put(“$project”,projectCondition);  
  35.   
  36. DBObject addFieldsCondition = new BasicDBObject();  
  37. DBObject likeCountSize = new BasicDBObject();  
  38. likeCountSize.put(“$size”,“$likes”);  
  39. DBObject myLikeIn = new BasicDBObject();  
  40. myLikeIn.put(“$in”,new Object[]{  
  41.         “d98f735b-6a78-4fb8-a824-1e40138b58d6”,“$likess”  
  42. });  
  43. DBObject likesSlice = new BasicDBObject();  
  44. likesSlice.put(“$slice”,new Object[]{  
  45.         “$likes”, –30, 30  
  46. });  
  47. addFieldsCondition.put(“likeCount”,likeCountSize);  
  48. addFieldsCondition.put(“myLike”,myLikeIn);  
  49. addFieldsCondition.put(“likes”,likesSlice);  
  50. addFields.put(“$addFields”,addFieldsCondition);  
  51.   
  52.   
  53. DBObject reProjectCondition = new BasicDBObject();  
  54. reProjectCondition.put(“likess”,0);  
  55. reProject.put(“$project”,reProjectCondition);  
  56. pipelines.add(match);  
  57. pipelines.add(sort);  
  58. pipelines.add(skip);  
  59. pipelines.add(limit);  
  60. pipelines.add(project);  
  61. pipelines.add(addFields);  
  62. pipelines.add(reProject);  
  63.   
  64. AggregationOutput output = cloudChairmanMongo.getCollection(“message”).aggregate(pipelines);  
  65.   
  66. String list = null;  
  67. for (Iterator<DBObject> it = output.results().iterator(); it.hasNext(); ) {  
  68.     BasicDBObject dbo = (BasicDBObject) it.next();  
  69.     log.info(dbo.toString());  
  70.   
  71. }  

投影查询

有时只要部分部分数据,如果其他属性的数据来很多,投影查询可以减少数据流量和实例化工作

[java] view plain copy

 
  1. import com.alibaba.fastjson.JSON;  
[html] view plain copy

 
    1. DBObject projection = new BasicDBObject();  
    2. projection.put(“content”,1);  
    3. projection.put(“picUrls.pictureUrl”,1);  
    4. DBObject result = cloudChairmanMongo.getCollection(“message”).findOne(message.getMessageId(),projection);  
    5. MessageDto messageDto = JSON.parseObject(result.toString(),MessageDto.class);  

版权声明:本文为qb666原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。
本文链接:https://www.cnblogs.com/qb666/p/9157849.html