I want to store code similar to how jsfiddle
stores code. I currently use Postgres
for my main database but I'm wondering if it's more ideal to be using a NoSQL database?
Code snippets for now will have just one author, but in the future there may be multiple authors and I want the ability for reverting as well.
I know there are key/value databases and document-oriented databases. Which specific noSQL db would suite my needs? Or should I still stick with my Postgres db?
FYI:
- I'm using django
- The users will be permanently stored in postgres ( I'm using openID )