Merge pull request #4420 from Fraasi/mongodb-typofix

[mongodb/en] fix couple of typos
This commit is contained in:
Marcel Ribeiro Dantas 2022-07-05 15:41:26 +02:00 committed by GitHub
commit f981bf279f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -256,7 +256,7 @@ db.engineers.find({ $gt: { age: 25 }})
db.engineers.find({ $gte: { age: 25 }})
// Find all less than or less than equal to some condition
db.engineers.find({ $lte: { age: 25 }})
db.engineers.find({ $lt: { age: 25 }})
db.engineers.find({ $lte: { age: 25 }})
// Find all equal or not equal to
@ -293,7 +293,7 @@ db.engineers.find({ $not: {
// Must match none of the query conditions
db.engineers.find({ $nor [
gender: 'Female,
gender: 'Female',
age: {
$gte: 18
}
@ -400,6 +400,6 @@ features, I would look at
- Aggregation - useful for creating advanced queries to be executed by the
database
- Idexing allows for caching, which allows for much faster execution of queries
- Indexing allows for caching, which allows for much faster execution of queries
- Sharding allows for horizontal data scaling and distribution between multiple
machines.