GithubHelp home page GithubHelp logo

mongodb-cheatsheet's Introduction

MongoDB CheatSheet

(TODO: Impliment in React + Mongo)

Document


Analogous to item. A single entry in a collection. A JSON object.

  • cannot start with a dollar sign > $ (as this specifies a field path or an operator)
  • cannot contain a dot > .
  • cannot have null
  • maximum size: 16mb
Field

A name-value pair in a document. (Analogous to key-value).

Collection


A collection of documents. In my head this is what I think of as a database.

Database


Basically a collection (container) of collections. Every database has its own file set.

Indexes


Data structures that store small parts of the collection's data that you set so that Mongo can search without scanning every single document in that collection.

// $lt is the query criteria
// users is the collection
db.users.find( { score: { "$lt": 30 } } ).sort( { score: -1 } );
                                       Here
                                        V
+---------------+----------------+---------------+---------------+----------------+
| {             | {              | {             | {             | {              |
|     score: 1  |     score: 15  |     score: 30 |     score: 35 |     score: 100 |
| }             | }              | }             | }             | }              |
+---------------+----------------+---------------+---------------+----------------+

ObjectId


12-byte id generated automatically that displays in hexadecimal.

Shard(ing)


Distributing a mongo server, to individual shards

mongodb-cheatsheet's People

Contributors

myxozoa avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.