-
Notifications
You must be signed in to change notification settings - Fork 76
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add time zone support #36
Comments
hope can use timezone soon. |
Would you be interested to implement this feature? |
hi, can i work on this issue? |
You can but in contrast to what the labels say, it's probably not a good first issue. I've tried it the other day and it's more tricky than I have though. The reason is the requirement of not allocating objects during serialization to reduce GC pressure on the application. It means that we can't just use The issue is that the UTC offset can change during a day (on the day daylight savings time changes). Thus, we can't cache the UTC offset. I don't have a good idea about how to proceed. Maybe we could use an adapted version of https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/time/FastDateFormat.html that accepts |
Thanks for your suggestion and explanations, so i look for another issue. |
hello, how to resolve it? |
As outlined, this is significant work, so not currently priortized |
Use the JVM's default timezone by default and let users configure a different time zone.
The text was updated successfully, but these errors were encountered: