Hi
I have these tables:
forum
- id
- name
- description
posts
- id
- forumID
- body
What I wonder is should I create a field in forum where i store the number of posts that been made in that forum? Update it every time someone makes a post. or should I count them with php? Is it a huge performance difference?