Earlier quoted context omitted.
danielweber is probably right. It's fashionable to hate on MongoDB now. There have been many, many articles detailing people having issues with it. Anything from losing data due to not keeping the set in RAM to "unsafe" defaults. Typically the hate comes from people being unprepared and not researching their database options enough before making choices. IMO the fact that it's so easy to get up and running with Mongo…
That's news to me, I'm seeing exactly the opposite: NoSQL, and especially MongoDB, seems to be the rage in my environment. I'm not as up to date as the average inhabitant of Hacker News, so I guess I'm just out of touch.
The “It” Crowd Doesn’t Like Me and I Finally Don’t Care
111–113 of 113 posts
Re: The “It” Crowd Doesn’t Like Me and I Finally Don’t Care
#112Earlier quoted context omitted.
Thanks for the post. I was about to start a project with CouchDB but was unsure why I was going to use it. I know relational databases/SQL better so I think I will stick with that. Do you think there is benefit in using stuff like SQLAlchemy or should I write just SQL files/queries?
| Do you think there is benefit in using stuff like | SQLAlchemy or should I write just SQL files/queries? If you're just in it for the learning, then maybe drop SQLAlchemy to get your hands dirty and learn; otherwise just use SQLAlchemy. If you're getting into really complex queries and optimizations you're going to have to resort to SQL anyways, even with SQLAlchemy. An ORM just allows you to abstract away most of…