Re: RFR: 8327429: String Template FMT built-in optimization for DateTimes

2024-03-05 Thread Jaikiran Pai
On Wed, 4 Oct 2023 22:30:42 GMT, Shaojin Wen wrote: > # Goal > Improve String Template FMT's processing performance of date types. > Currently, FMT processes date types by toString and then calls > j.u.Formatter#print. Because there is less parse processing than > String.format, the performanc

RFR: 8327429: String Template FMT built-in optimization for DateTimes

2024-03-05 Thread Shaojin Wen
# Goal Improve String Template FMT's processing performance of date types. Currently, FMT processes date types by toString and then calls j.u.Formatter#print. Because there is less parse processing than String.format, the performance is improved, but it is still not good enough. There is an inte