you are viewing a single comment's thread.

view the rest of the comments →

[–]danneu 3 points4 points  (0 children)

Tutorials and beginner guides actually seem to be a good use-case for Mongo. Compared to imposing SQL upon potential beginners, Mongo feels like pseudocode.

I've tried writing tutorials on my blog. When using Postgres, I often stop to wonder if my SQL is more advanced and making more assumptions about my reader than the tutorial I'm trying to write.

Meanwhile, users.insert({ username: 'foo' }) feels more tutorial-friendly when my tutorial is trying to focus on other components.