MongoDB queries don’t always return all matching documents
engineering.meteor.com
MongoDB queries don’t always return all matching documents
1–10 of 419 posts
Re: MongoDB queries don’t always return all matching documents
#2Re: MongoDB queries don’t always return all matching documents
#3Mongo, in one word: sucks. Couchbase, does not.
Re: MongoDB queries don’t always return all matching documents
#4Re: MongoDB queries don’t always return all matching documents
#5Re: MongoDB queries don’t always return all matching documents
#6Re: MongoDB queries don’t always return all matching documents
#7Does this guy have so many containers running that the status info can't be kept in RAM? I have a status table in MySQL that's kept by the MEMORY engine; it's thus in RAM. It doesn't have to survive reboots.
Re: MongoDB queries don’t always return all matching documents
#8What storage engine are you using? I wonder if the same issue comes in wiredtiger MVCC engine.
Re: MongoDB queries don’t always return all matching documents
#9I've just migrated one project from mongo to postgresql and i advise you to do the same. It was my mistake to use mongo, after I've found memory leak in cursors first day I've used the db which I've reported and they fixed it. It was 2015.. If you have a lot of relations in your data don't use mongo, it's just hype. You will end up with collections without relations and then do joins in your code instead of having db…
I'm kind of curious as to where this hype is. I've almost never heard anybody say anything positive about mongodb. All I ever see is people saying it's terrible / hilarious for various reasons.
Re: MongoDB queries don’t always return all matching documents
#10I've just migrated one project from mongo to postgresql and i advise you to do the same. It was my mistake to use mongo, after I've found memory leak in cursors first day I've used the db which I've reported and they fixed it. It was 2015.. If you have a lot of relations in your data don't use mongo, it's just hype. You will end up with collections without relations and then do joins in your code instead of having db…
> don't use mongo, it's just hype I'm kind of curious as to where this hype is. I've almost never heard anybody say anything positive about mongodb. All I ever see is people saying it's terrible / hilarious for various reasons.
Not saying those are impossible goals but so far no database has managed to deliver that. Building a large-scale endlessly-scalable database is still very hard and very detailed and easy to screw up.