For example, let's take the format of a forum, where we have multiple users and multiple threads. Say this forum wants to track which users have read which threads and, say, use that information to mark which threads are unread when viewing the thread list.

The only solution I can imagine is something that drops a record into the database each time a user visits a thread. I suppose there could be a 'mark all as read' button, which could employ a time stamp to help lessen the sprawl in the database... regardless this isn't a solution that impresses me.

I have a feeling that I'm missing something here... maybe Thanksgiving morning isn't the time to think over one's programming problems.

Is there a better solution out there for this? Any ideas?

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted
  1. Drop a record in the database for each user-thread combination
  2. Or store this information in a file - one file per user. It may need to be locked/unlocked in case multiple logins by the same user are allowed.
link|improve this answer
feedback

Using a database record sounds like the most promising to me. It will generate a table with millions of rows very quickly if you have an active forum but it would be the simplest solution to implement. It will give a lot of flexibility for querying which users are reading what too.

link|improve this answer
feedback

I think I saw somewhere, maybe phpbb forum? anyway

there was a table in it with userid, threadid, last-read-datetime (let name it userAsRead)

then it would compare the last post made in that threadid vs last-read-datetime

for the mark as all read, it was a field in the usertable using the same logic as above

don't forget to clear the userAsRead if "mark as all read" is used, would save DB space

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.