Open
Conversation
MongoDB toma2
NormanPerrin
requested changes
Dec 2, 2019
Owner
There was a problem hiding this comment.
Gracias @Gaunacamila !
Te dejé algunos comentarios. Son preguntas que me surgieron al leer la documentación.
|
|
||
| * Permite guardar documentos en formato JSON. | ||
| * Tiene esquema flexible (osea que podemos cambiar la estructura de nuestros documentos sin problema) | ||
| * MongoDB está preparado para escalar fácilmente de manera horizontal |
Owner
There was a problem hiding this comment.
Qué significaría escalar de manera horizontal? cómo se diferencia de otras bases de datoss?
Contributor
Author
There was a problem hiding this comment.
Exacto !
También no quiero meter información irrelevante
| <crear o insertar imagen de estructura> | ||
|
|
||
| Los documentos se representan por pares de CLAVE (nombre del campo) y VALOR (valor del campo). | ||
| -Los nombres de los campos siempre son cadenas de textos |
Owner
There was a problem hiding this comment.
Diría, nombres de las claves.
|
|
||
| Los documentos se representan por pares de CLAVE (nombre del campo) y VALOR (valor del campo). | ||
| -Los nombres de los campos siempre son cadenas de textos | ||
| -Los valores pueden ser : String ,Number , Array ,BOolean etc. |
Owner
There was a problem hiding this comment.
Objeto, o documento, es otro tipo de dato importante a mostrar.
| -Los nombres de los campos siempre son cadenas de textos | ||
| -Los valores pueden ser : String ,Number , Array ,BOolean etc. | ||
|
|
||
| Configurar el ambiente de MongoDB : |
Owner
There was a problem hiding this comment.
Vamos a usar una solución en la "nube", como Atlas o Heroku. Así que no haría falta la config local por ahora
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
MongoDB toma2