You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It is time-consuming for currentTimeMillis ===> seconds
long currentSecond = TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis());
under method getCurrentSecond().
After i change to currentTimeMillis instead of transferring to seconds,
It is much faster. Otherwise DefaultUidGenerator is very slow.
The text was updated successfully, but these errors were encountered:
It is time-consuming for currentTimeMillis ===> seconds
long currentSecond = TimeUnit.MILLISECONDS.toSeconds(System.currentTimeMillis());
under method getCurrentSecond().
After i change to currentTimeMillis instead of transferring to seconds,
It is much faster. Otherwise DefaultUidGenerator is very slow.
The text was updated successfully, but these errors were encountered: