Implementation of the asp.net mvc3 forum. Part of the implementation is a function that shows which messages were read and which did not.
Now I implemented this in that I create an entry in my data for each user when creating a new message, and then delete them while they are displayed to my users, I also delete everything for items older than 1 month.
I currently have 450 users, so it takes a long time to create them.
I thought there should be a better way, since large vbullitin or phpbb forums with over 1000 users can do this without spending 2+ sek on post-creation to create all these posts, but I did not find it. I see some other questions about this on this site, but I did not find an answer that I can use.
source share