Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

So i have this nightmere (RDBMS) . I asked alot of questions here but none have been answered ,about mimicking oo concepts in rdbms ...

Many websites (forums , social networks etc) have alot of features for the posted content .
They can have comments, likes, shares, stars etc ...

Assuming that there can be several types of posts (normal post , comment, photo, question) and some types of posts can't have all features (like lets say only stars and comments) , it is pritty hard to decide which way to go...

I can go :

  • on the oo road by creating an entity id , and entity type for each post (this entity id will be referenced in each post table and the feature will also reference the entity id ) . Also need the entity type to make some integrity triggers for example a comment entity can have like feature but not comment feature . This entity type field will be a nightmere if it will be needed to add more features for posts (some new entity types will be needed to be added). And this simply is a mess for data integrity .

  • or on the 5x times more db tables . By this i mean designing features tables for every single type of post table . This will require more joins , longer queries , but at least i know i won't have problems with data integrity or scalability .

I have to use a rdbms , can't go the oodbms way or graph db way .

What will you choose from those 2 types of design ? Or how would you design it better ?

share|improve this question
I am currently frustrated at both approaches (and especially with TSQL broken handling of NULL uniqueness :-/). I wish there was a "template" or "mixin" RDBMS. Grrr. That being said, a number of OOMs can map to a "traditional" RDBMS so it's not necessary to "give up OOM" or hierarchies. The DB-level integrity is where it can get .. interesting. – user166390 Jul 24 '12 at 1:46
@pst i wonder how will an orm build those triggers for the constraints ( haven't seen a php orm that will create a hard coded constraint trigger ).I'm really not into orms really . (php orms) – Tudor Tudor Jul 24 '12 at 2:09
@pst I don't think orms will automagically solve the polymorphic associations and rdbms problem. – Tudor Tudor Jul 24 '12 at 2:20
They do .. if you're willing to living within their bounds ;-) The harder issue is ensuring that the database as integrity is ensured. Often times when moving to an ORM the DB layer is "softened" because of the expected access (and "guarantee" of using it). I like a strong DB layer and the only "ORM" I currently use in LINQ2SQL. This is good (in that I can implement either of the above) and bad in that it's mostly manual .. – user166390 Jul 24 '12 at 2:32
.. I wonder if there are any modeling tools to aide in replication of common functionality between homogenized tables .. that is, utilize the RDBMS, but not so manually. – user166390 Jul 24 '12 at 2:33
show 4 more comments

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.