Top 5 MongoDB gotchas
devblog.me
Top 5 MongoDB gotchas
1–9 of 9 posts
Re: Top 5 MongoDB gotchas
#2if (N > 50 || N < 1) ??
Re: Top 5 MongoDB gotchas
#3Wouldn't the simpler, faster and more appropriate syntax be if (N > 50 || N < 1) ??
Re: Top 5 MongoDB gotchas
#4Wouldn't the simpler, faster and more appropriate syntax be if (N > 50 || N < 1) ??
Re: Top 5 MongoDB gotchas
#5I'm glad I am finally rid of MongoDB in my day-to-day job. I won't miss it.
Re: Top 5 MongoDB gotchas
#6Wouldn't the simpler, faster and more appropriate syntax be if (N > 50 || N < 1) ??
if (!N || Math.abs(N) > 50 ) {
N = 50
};Re: Top 5 MongoDB gotchas
#7So not only is performance abysmal, the query language has several non-obvious syntax problems. In retrospect, the idea of using JSON as a query language seems ill-advised and counter-intuitive. I'm glad I am finally rid of MongoDB in my day-to-day job. I won't miss it.
Re: Top 5 MongoDB gotchas
#8So not only is performance abysmal, the query language has several non-obvious syntax problems. In retrospect, the idea of using JSON as a query language seems ill-advised and counter-intuitive. I'm glad I am finally rid of MongoDB in my day-to-day job. I won't miss it.
Well, those 5 are very specific corner cases. Most people will not face them in real life.