
MongoDB海洋航线
文章平均质量分 87
数据架构
知识就是力量,良知才是方向。良知比知识更重要!
When you want to give up , think about why you started?
千学不如一看,千看不如一练,千练不如一战
ACDU(中国DBA联盟)成员
安徽DBA俱乐部 成员
展开
-
Chapter 1 A database for the modern web
Why are developers interested in MongoDB?MongoDB is a database management system designed to rapidly develop web applications and internet infrastructure.MongoDB's document format is based on JSON,a popular schema for storing arbitrary data structures.原创 2021-11-27 18:36:44 · 385 阅读 · 0 评论 -
gem install mongo 报错ERROR: Failed to build gem native extension.如何解决?
[root@iZbp1ehco2fi1l7bj6hhphZ ~]# gem install mongoFetching: bson-4.12.1.gem (100%)Building native extensions. This could take a while...ERROR: Error installing mongo: ERROR: Failed to build gem native extension. current directory: /usr/loc...原创 2021-11-29 09:39:58 · 5488 阅读 · 0 评论 -
Introduction MongoDB
What is MongoDB?Database solutionHow is mongoDB different?The Key MongoDB Characteristicslink :MongoDB: the application data platform | MongoDBUseful Articles/Docs: Learn m...原创 2021-12-08 23:31:04 · 281 阅读 · 0 评论 -
MongoDB Interview Summary Questions
What is MongoDB ? MongoDB is an open-source NoSQL database written in C++ language.It uses JSON-like documents with optional schemas. It provides easy scalability and is a cross-platform,document-oriented database. MongoDB works on the concept of Col..原创 2021-12-02 20:38:30 · 553 阅读 · 0 评论 -
Java8 interview questions for Full Stack
Describe the newly added features in Java8?The newly added features of Java 8 Feature Name Description Lambda expression A function that can be shared or referred to as an object Functional Interfaces ...原创 2021-11-25 07:11:47 · 359 阅读 · 0 评论 -
How to install mongoDB in Centos 8
Step 1: 配置安装库[root@iZbp1ehco2fi1l7bj6hhphZ ~]# vi /etc/yum.repos.d/mongodb-org-4.2.repoStep 2: 将需要更新的package更新到源中的最新版。(yum update和yum upgrade的功能都是一样的,都是将需要更新的package更新到源中的最新版。唯一不同的是,yum upgrade会删除旧版本的package,而yum update则会保留(obsoletes=0)。)[root@iZbp1..原创 2021-11-22 09:54:02 · 857 阅读 · 0 评论 -
MongDB : Exploring The Shell & The Server
Module IntroductionUseful Resources & LinksHelpful Articles/Docs: More Details about Config Files:Configuration File Options — MongoDB Manual More Details about the Shell (mongo)Options: Legacy mongo Shell — MongoDB Manual More...原创 2021-12-15 22:18:49 · 659 阅读 · 0 评论 -
Chapter 2 MongoDB through the JavaScript shell
个人博客,喜欢的可以收藏This chapter covers:Using CRUD Operations in the MongoDB shell Building indexes and using explain() Understanding basic adminstration Getting help2.2.1 Starting the shellstart the MongoDB shell by running the mongo executable:mongo原创 2021-11-27 23:26:18 · 573 阅读 · 0 评论 -
Designing Your Application PartII
Chapter 5 IndexesIn this chapter we will cover:What indexes are and why you'd want to use them. How to choose which fields to index How to enforce and evaluate index usage Administrative details on creating and removing indexes.Introduction to Inde原创 2022-04-09 10:42:13 · 1003 阅读 · 0 评论 -
Introduction to MongoDB(Part 2)
CP3 Creating, Updating, and Deleting DocumentsThis chapter covers the basic of moving data into and out of the database,including the following:Adding new documents to a collection Removing documents from a collection Updating existing documents Cho原创 2022-04-06 07:27:25 · 604 阅读 · 0 评论 -
Introduction to MongoDB(Part1)
Introduction to MongoDB(Part1)原创 2022-04-04 21:51:47 · 759 阅读 · 0 评论 -
About Constructing queries in MongoDB
Querying an e-commerce data model The MongoDB query language in detail Query selectors and optionsProducts,categories, and reviews> use productsswitched to db products> show tables;ordersproducts> product = db.products.findOne({"slug" :原创 2022-04-02 13:55:55 · 321 阅读 · 0 评论 -
Cp3 Creating and Manipulating Documents
Inserting New DocumentsLearn Data ModelingHow does the value fo _id get assigned to a document.it is automatically generated as an ObjectId type value.You can select a non ObjectId type value when inserting a new document, as long as t...原创 2022-03-30 07:58:28 · 849 阅读 · 0 评论 -
CP2 Importing ,Exporting,and Querying Data
How DoesMongoDB Store Data?What is JSON?JavaScript Object Notation, more commonly known as JSON,was defined as part of the JavaScript language in the early 2000s.JavaScript objects are simple associative containers, wherein a string...原创 2022-03-28 21:46:58 · 707 阅读 · 0 评论 -
CP1 What is MongoDB?
CP1 What is MongoDB?原创 2022-03-27 14:42:10 · 837 阅读 · 0 评论 -
How to deal with document-oriented data
Schema design Data models for e-commerce Nuts and bolts of databases, collection, and documents.Principles of schema designWhat are your application access pattern? What's the basic unit of data? the basic unit of data is the BSON document What are原创 2022-03-26 15:46:05 · 812 阅读 · 0 评论 -
Writing programs using MongoDB
Introducing the MongoDB API through Ruby Understanding how the drivers work Using the BSON format and MongoDB network protocol原创 2022-03-26 11:51:48 · 1016 阅读 · 0 评论 -
How to fix the ERROR: Failed to build gem native extension in Centos 8
How to fix the ERROR: Failed to build gem native extension in Centos 8原创 2022-03-25 19:56:22 · 1499 阅读 · 0 评论 -
How to install rubygem-mongo on centos8 using dnf
How to install rubygem-mongo on centos8 using dnf原创 2022-03-25 18:11:55 · 1277 阅读 · 0 评论 -
MongoDB through the JavaScript shell
How to Using CRUD operation in the MongoDB shellHow to Building indexes and using explain()How to understand basic administrationHow to getting help原创 2022-03-25 16:57:55 · 396 阅读 · 1 评论 -
How to install mongodb in Centos 8
how to install mongodb in centos8原创 2022-03-23 23:40:13 · 258 阅读 · 0 评论