Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a legacy Java application, where its performance bottle neck is due to the usage of Calendar. As Calendar is a mutable object, we have to clone every-time we get it.

public Calendar getCalendar() {
    return (Calendar)calendar.clone();
}

We also discover that in our application, we didn't use the time zone information at all. I was wondering, should we just re-factor the code to

public long getTimestamp() {
    return timestamp;
}

We will only turn the timestamp into Calendar or Joda DateTime, when we need to perform date/time arithmetic operation.

Or to prevent unforeseen future, should we use Joda DateTime?

public DateTime getDateTime() {
    return dateTime;
}
share|improve this question
LocalDateTime is the suitable class to use, not DateTime, if you do not have time zone info to store – JodaStephen Nov 9 '10 at 8:48
@JodaStephen, I was wondering if in the future, I need TimeZone information, is the change will be cheap? (That's why I hesitate to use pure 'long'). If I just don't need time zone info, I will instead choose to use 'long', and use Java Calendar whenever there is arithmetic or comparison need. – Cheok Yan Cheng Nov 11 '10 at 2:05

3 Answers

up vote 1 down vote accepted

I suggest you to use joda time. Look at slide number 46 in the presentation for performance related numbers for some of the operations http://amap.cantabria.es/confluence/download/attachments/3244089/JodaTime-StephenColebourne.pdf?version=1

share|improve this answer
9  
the link is dead. – dertoni Apr 11 '11 at 9:11

Generally, if you don't care about timezone and you have to store a lot of timestamps, you'd better store them as long-s. It is 8 bytes per timestamp. All object oriented date-time wrappers around 'long' will consume at least 24 bytes per timestamp. When you'll need to perform any datetime arithmetic - convert your long timestamp into a Joda DateTime (or MutableDateTime). They are both implemented as wrappers around a 'long' field, so creating them from long is extremely cheap.

share|improve this answer

You should definitely use JodaTime. Make sure you pass around your dates in java.util.Date, which is just a long number of milliseconds since 1/1/1970 in UTC.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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