And what factors would cause me to choose one or the other?
|
Time is a wrapper around POSIX-standard time_t, or seconds since January 1, 1970. This can be expressed as a positive or negative number, and is bounded:
Values outside those bounds produce an error in 1.8.7. Update: 1.9.2 does seem able to handle larger values. In contrast, DateTime is much more open-ended. The more robust version is a Ruby on Rails construct that serves as a wrapper around SQL-standard DATETIME fields. These contain arbitrary dates and can represent nearly any point in time as the range of expression is typically very large.
So it's reassuring that DateTime can handle blog posts from Aristotle. |
|||||||||||||||||||
|
|
The performance difference can't be emphasized enough... Time is C, and DateTime is Ruby:
Update (2/2012): As already mentioned in the comment, 1.9.3 has vastly improved
|
|||||
|
|
I think the answer to "what's the difference" is one of the unfortunate common answers to this question in the Ruby standard libraries: the two classes/libs were created differently by different people at different times. It's one of the unfortunate consequences of the community nature of Ruby's evolution compared to carefully planned development of something like Java. Developers want new functionality but don't want to step on existing APIs so they just create a new class - to the end user there's no obvious reason for the two to exist. This is true for software libraries in general: often the reason some code or API is the way it is turns out to be historical rather than logical. The temptation is to start with DateTime because it seems more generic. Date... and Time, right? Wrong. Time also does dates better, and in fact can parse timezones where DateTime can't. Also it performs better. I've ended up using Time everywhere. To be safe though, I tend to allow for DateTime arguments to be passed into my Timey APIs, and either convert. Also if I know that both have the method I'm interested in I accept either, like this method I wrote for converting times to XML (for XMLTV files)
|
|||||||||||
|
|
I found such things like parsing and calculating the beginning/end of a day in different timezones are easier to do with DateTime, assuming you are using the ActiveSupport extensions. In my case I needed to calculate the end of the day in a user's timezone (arbitrary) based on the user's local time which I received as a string, e.g. "2012-10-10 10:10 +0300" With DateTime it's as simple as
Now let's try it the same way with Time:
Actually, Time needs to know the timezone before parsing (also note it's
So, in this case it's definitely easier to go with DateTime. |
||||
|
|