Let's say I wanted to display a Reminder (dynamically created by user) in my ASP.NET MVC View Every WEEK/MONTH/.... until "infinity".

This reminder has to be seperate database record (or in my case EF Entity Instance object) for each reocurrence, because i'm storing specific data in my database for each occurrence.

How would you guys go about "inserting" these reminder clones into the database? I Can't insert infinite reminders, .. And choosing an arbitrary date say "2000 years" from now seems wrong, and also inserts a lot of records into the database.

Kind of clueless here...

Thanks in advance for any (alternative) solution/ advice. *It is key tough that i can store data for each occurence!*

link|improve this question

67% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Inserting reminders into the database, IMHO, is a bad way of implementing it. It is just lazy.

My approach would be to store the conditions and then test the conditions on a regular basis. Perhaps just keeping a timestamp of last reminder check and if it is more than 8 hours, re-calculate - something around these lines.


UPDATE

In order to know which reminder has been seen by the user or not, for every type you just keep a timestamp of when it was read. If the difference is more than the item interval, then it must be shown. If timestamp is less than the the time reminder must be shown, then it must be shown.

link|improve this answer
Thanks, but what about occurence-specific data, such as : "The user has hidden/read this occurence of the reminder"? It popped into my mind that I could store this in a sparse way, so that only those occurences that actually have extra data are stored seperate from the actual reminder table... but that seems like a lot of time I don't have:) – Mvision Apr 13 '11 at 12:17
See my update please. – Aliostad Apr 13 '11 at 12:23
Trying your approach now:) I'll get back to you in a bit! – Mvision Apr 13 '11 at 12:34
I changed one bit. Please read the update. – Aliostad Apr 13 '11 at 12:36
Thanks a lot for your quality answer and guidance, your approach seems to be working. – Mvision Apr 13 '11 at 13:57
show 1 more comment
feedback

Is there the remotest possibility that your code will be used in 10 years time? If not try 10 years.

link|improve this answer
1  
en.wikipedia.org/wiki/Year_2000_problem "It never entered our minds that those programs would have lasted for more than a few years." - Alan Greenspan – Ishtar Apr 13 '11 at 11:03
@lshtar Fair point :-) – openshac Apr 13 '11 at 11:07
feedback

Your Answer

 
or
required, but never shown

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