Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add blog post on MongoDB sorting for scalar values #3200

Merged
merged 33 commits into from
Oct 31, 2023
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
318dce9
init
chilagrow Aug 15, 2023
3551b17
add content about BSON type and comparison order
chilagrow Aug 15, 2023
c2c220d
Merge branch 'main' into blog-post-sorting
chilagrow Aug 15, 2023
b7ec89d
add examples
chilagrow Aug 15, 2023
5fdf229
add explanations to examples
chilagrow Aug 15, 2023
00d70b0
update heading
chilagrow Aug 16, 2023
5548bcc
use official image
chilagrow Aug 16, 2023
00bd8e6
expand example for using deterministic sorting
chilagrow Aug 16, 2023
dc24593
minor formatting
chilagrow Aug 16, 2023
3581094
docs-fmt
chilagrow Aug 16, 2023
e92f0d6
Merge branch 'main' into blog-post-sorting
chilagrow Aug 16, 2023
e0ffd64
fix inconsistent usage of Bson type
chilagrow Aug 16, 2023
76886a3
Merge branch 'main' into blog-post-sorting
chilagrow Aug 28, 2023
97036d3
address comments
chilagrow Aug 28, 2023
18bdcc9
rewording
chilagrow Aug 28, 2023
8611f6d
minor fix
chilagrow Aug 28, 2023
9827dc2
merge conflict
chilagrow Oct 23, 2023
6e05c02
cleanup
chilagrow Oct 23, 2023
097fb56
rename
chilagrow Oct 25, 2023
0d383e2
update keyword
chilagrow Oct 25, 2023
66ea256
fix bad merge
chilagrow Oct 25, 2023
95b08e5
update linkedin url
chilagrow Oct 25, 2023
c9e8903
cleanup
chilagrow Oct 25, 2023
9de8349
use one image for the blog
chilagrow Oct 25, 2023
4312f66
remove keywords
chilagrow Oct 25, 2023
6611e51
Format blog
Fashander Oct 30, 2023
2d6a07c
Edit blog
Fashander Oct 30, 2023
1793b9e
Update website/blog/2023-10-25-mongodb-sorting-scalar.md
Fashander Oct 30, 2023
5f2e0a7
Update website/blog/2023-10-25-mongodb-sorting-scalar.md
Fashander Oct 30, 2023
993c4bf
Merge branch 'main' into blog-post-sorting
chilagrow Oct 30, 2023
e6d0171
update date of blog
chilagrow Oct 31, 2023
99de106
Merge branch 'main' into blog-post-sorting
AlekSi Oct 31, 2023
418d3e3
Update website/blog/2023-10-31-mongodb-sorting-scalar.md
AlekSi Oct 31, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update website/blog/2023-10-25-mongodb-sorting-scalar.md
Co-authored-by: Chi Fujii <chi.fujii@ferretdb.io>
  • Loading branch information
Fashander and chilagrow authored Oct 30, 2023
commit 5f2e0a7d3a874b6edee9812b50da3794e935913c
2 changes: 1 addition & 1 deletion website/blog/2023-10-25-mongodb-sorting-scalar.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ In this blog post, we delve into the process of sorting scalar values in MongoDB
<!--truncate-->

Sorting in MongoDB involves comparing BSON values to ascertain their relative order – whether one value is equal to, greater than, or less than another.
The resultant sorted array can be in either ascending or descending order.
The resultant sorted values can be in either ascending or descending order.

When comparing different BSON types, the [BSON comparison order](#bson-comparison-order) is used.

Expand Down
Loading