I'm building a small forum for my website. the forum will potentially be heavily accessed and I just can't seem to get a peace of mind about the structure. I now have separate tables for counters like ForumThreadCount and ForumThreadPostCount. This gives a little bit overhead cause I need to query them separately and it's not as maintainable as putting these values in de default Forum table.
I would really like to place them in the default Forum table though which is much easier to maintain and query but I'm afraid that updating the forum table directly and (possibly) many times a minute is not really safe/best practice.
Have any of you guys been trough similair scenarios and what's your thoughts about the two methods?
Thank you for your time.
Kind regards, Mark