开发者

Q&A database map like stackoverflow - seperate table for questions titles

开发者 https://www.devze.com 2022-12-23 04:52 出处:网络
I am planning to make Q&A system (quite specific, has nothing to do with IT) I was looking for Stackoverflow database map: https://meta.stackexchange.com/questions/2677/anatomy-of-a-data-dump/267

I am planning to make Q&A system (quite specific, has nothing to do with IT)

I was looking for Stackoverflow database map: https://meta.stackexchange.com/questions/2677/anatomy-of-a-data-dump/2678#2678

And I am thinking is not it is better practice to make separate 开发者_StackOverflow中文版table for questions titles. With "firstPostId".

Instead of  
|- PostTypeId  
|    - 1: Question  
|    - 2: Answer  

So I want to know, why stackoverflow did not use separate table for questions title. Is it "Do not optimize yet" or does it have any logic behind it?


Based just on the schema as shown in your link, I surmise that Questions and Answers have so many attributes in common that it was convenient to model it as was done. In short, symmetry and failing to multiply entities unnecessarily seem credible reasons for the approach.

I also suspect they use a key/value (a.k.a. nosql) database for the backing store which allows entries to not possess all possible attributes. For example, a question can have tags but an answer will not. Key/value databases don't fret over differences like that.

Disclaimer: I have no actual knowledge of how SO is implemented.

0

精彩评论

暂无评论...
验证码 换一张
取 消

关注公众号