I'm designing some custom blog software, and have run into a conundrum regarding database design. The software requires that there be multiple content types, each of which will require different entry forms and presentation templates.

My initial instinct is to create these content types as objects, then serialize them and store them in the database as JSON or YAML, with the entry forms and templates as simple strings attached to the "contentTypes" table. This seems cumbersome, however. Are there established best practices for dealing with this design? Is this a use case where I should consider an object database?

If I should be using an object database, which should I consider? I am currently working in Python and would prefer a capable Python library, but can move to Java if need be.

link|improve this question

75% accept rate
Why aren't you using Django? – S.Lott Dec 21 '10 at 20:45
Mostly as an exercise. This is a personal project, and I want to understand it from the ground up. Full-stack frameworks like Django make that a challenge. If I needed to deliver this to a customer, I certainly would choose something like Django. – syrion Dec 22 '10 at 2:48
feedback

2 Answers

up vote 2 down vote accepted

Please do Not Store templates (that might be altered by a user) in a database. There's no sane way to migrate from a staging environment to production if you have to deal with doffs of database dumps. We are dumping some software right one for this very reason.

Apart from that I'd simply store the source (user editable part) in the database plus a "precompiled version" either directly in the database (for faster retrieval) or in some cache system.

I'd personally go with a set theory approach.

  • Store each set of content type precompiled and recompile it when edited for fast serving in a separate place (table, collection, directory, whatever)
  • Store the sources in a common place to make it easy to rebuild different content types (the source format really just is a special case content type)
  • keep the templates in a place where migration between systems (dev, staging, prod) makes migration easy
link|improve this answer
Note: It doesn't make a lot of difference if you only retrieve by primary key for nosql vs. SQL. So for learning use whatever you know less - if that should be part of your learning experience. Otherwise stay with what you know. It's a lot easier to fix bugs in a well known environment than in a new one. – Server Horror Dec 23 '10 at 10:43
-1 to myself for overlooking the "presentation vs. data" distinction. +1 to you for pointing it out. I haven't worked directly with precompiled "snippets" representing individual content items; most of my web app experience has been dealing directly with databases in low-demand situations rather than web-facing situations. – syrion Dec 23 '10 at 18:33
feedback

I'm a huge Oracle booster but I think you should seriously consider NoSQL. Cassandra and other NoSQL Databases have already considered your conundrum and have smashed it down to the ground. CouchDB is another who, I believe their example code is how to store a blog.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.