I am creating a reminder system for the software that we have. Currently I have the user give me the time they would like to be reminded and I store it in a database.

Then later, I have a service that periodically checks the database for reminder times. If the reminder time matches the server time, the system sends an email to the user.

I just now realized that this may not work because of time zone differences.

My question, what is the best way to handle time differences in the server and the client, so that the reminder is accurate?

For example..... our server is set for central time at say 6:00pm...... The user who is on the east coast wants a reminder at 7:00pm... this means my server would need to send the reminder at 6:00pm server time.

I hope the question is clear.

link|improve this question

60% accept rate
feedback

2 Answers

up vote 6 down vote accepted

I suggest handling everything in UTC internally, and having the client software do the region-specific translation. Then you can support any arbitrary time zone, and if you ever have to move the server elsewhere or your service gets popular enough to be multihomed, you are still OK.

link|improve this answer
okay.... let me check this out. – DJ Burb Oct 11 '11 at 19:37
This worked!!!!! Thanks. – DJ Burb Oct 11 '11 at 19:46
feedback

Store everything in universal time and update your clients based off that conversion.

So simply put, instead of having your clients send you a request for 6:00 EST, have them first calculate the conversion between EST and UTC and send you the UTC instead.

link|improve this answer
so UTC time is what I thought it was right? It's completely unbiased to time zones and such, correct? – DJ Burb Oct 11 '11 at 19:35
All time zones are biased based on current rotational position of the earth to a region on the earth :). However, almost all frameworks and programmers use UTC as the one timezone to convert non UTC timezones to for this particular purpose. – Erik Philips Oct 11 '11 at 19:47
feedback

Your Answer

 
or
required, but never shown

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