- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用这个libraryDependency += "com.datastax.oss"% "java-driver-core"% "4.3.0"
库来创建基于时间的uuid。虽然它生成基于时间的 uuid,但它给了我长达几秒的时间,但我正在寻找 100 纳秒的值
import com.datastax.oss.driver.api.core.uuid.Uuids
println(Uuids.timeBased().toString)
输出 uuid 类似于 f642f350-0230-11ea-a02f-597f2801796a
,对应于格林威治标准时间 2019 年 11 月 8 日星期五下午 2:06:30
请帮助了解如何以毫秒为单位获取类似这样的时间格林威治标准时间 2019 年 11 月 8 日星期五下午 2:06:30:0000000Z
我希望将时间戳转换为 uuid 格式以进行测试(测试仅接受 uuid 格式)。然后我会将 uuid 转换回时间以测量一些时间差。
最佳答案
这里有几个步骤。第一个是将基于时间的 UUID 的时间戳(从 1582 年 10 月 15 日开始的数百纳秒)转换为与 Java 日期功能兼容的时间戳(即从 1970 年 1 月 1 日开始的毫秒)。值得注意的是,您要求的精度高于毫秒。
接下来,我们需要将该日期解释为正确的时区。
最后,我们需要将其格式化为所需格式的文本。
代码如下:
// this is the difference between midnight October 15, 1582 UTC and midnight January 1, 1970 UTC as 100 nanosecond units
private static final long EPOCH_DIFFERENCE = 122192928000000000L;
private static final ZoneId GREENWICH_MEAN_TIME = ZoneId.of("GMT");
private static final DateTimeFormatter FORMATTER = new DateTimeFormatterBuilder()
.appendText(DAY_OF_WEEK, FULL)
.appendLiteral(", ")
.appendText(MONTH_OF_YEAR, FULL)
.appendLiteral(' ')
.appendValue(DAY_OF_MONTH)
.appendLiteral(", ")
.appendValue(YEAR, 4)
.appendLiteral(" at ")
.appendValue(CLOCK_HOUR_OF_AMPM)
.appendLiteral(':')
.appendValue(MINUTE_OF_HOUR, 2)
.appendLiteral(':')
.appendValue(SECOND_OF_MINUTE, 2)
.appendLiteral('.')
.appendFraction(NANO_OF_SECOND, 7, 7, false)
.appendLiteral(' ')
.appendText(AMPM_OF_DAY)
.appendLiteral(' ')
.appendZoneText(FULL)
.toFormatter(Locale.getDefault());
public static String formattedDateFromTimeBasedUuid(UUID uuid) {
ZonedDateTime date = timeBasedUuidToDate(uuid);
return FORMATTER.format(date);
}
public static ZonedDateTime timeBasedUuidToDate(UUID uuid) {
if (uuid.version() != 1) {
throw new IllegalArgumentException("Provided UUID was not time-based.");
}
// the UUID timestamp is in 100 nanosecond units.
// convert that to nanoseconds
long nanoseconds = (uuid.timestamp() - EPOCH_DIFFERENCE) * 100;
long milliseconds = nanoseconds / 1000000000;
long nanoAdjustment = nanoseconds % 1000000000;
Instant instant = Instant.ofEpochSecond(milliseconds, nanoAdjustment);
return ZonedDateTime.ofInstant(instant, GREENWICH_MEAN_TIME);
}
我会将这些方法和常量放在实用程序类中以便于重用。
一些注意事项:
java.time.format.TextStyle
和 java.time.temporal.ChronoField
。DateTimeFormatterBuilder
而不是更常见的 DateTimeFormatter.forPattern(String)
。我发现它更具可读性,并且愿意容忍由此产生的冗长内容。2:06:30:001
;此代码生成 2:06:30.001
——秒和毫秒之间的小数点,而不是冒号。这是更正确的,但如果您更喜欢冒号,只需更改相应的 .appendLiteral('.')
以传递冒号即可。Uuids
类使用系统时钟的毫秒精度值作为输入,因此您只会在最后四个位置看到零,除非您实现自己的纳秒 -基于变体。您可以使用 System.nanoTime() 来做到这一点,但有一些复杂性 - check out the note on the JavaDoc for more .要确定两个 ZonedDateTimes 之间的时间量,您只需执行以下操作:
Duration duration = Duration.between(date1, date2);
Duration
类有 several useful methods您可以使用它来解释结果。
关于java - 获取高达 100 纳秒的基于时间的 uuid,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58768471/
我正在开发一个 GPU 加速程序,该程序需要读取可变大小的整个文件。我的问题是,从文件读取并传输到协处理器(CUDA 设备)的最佳字节数是多少? 这些文件可能大至 2GiB,因此创建该大小的缓冲区似乎
我用golang写了一个tcp handler,每秒大概300个连接。刚投产的程序没有问题。但是运行了大约 10 天后,我看到 cpu 使用率高达 100%。我使用 golang 工具“go tool
我想为 libcurl 自定义接收函数以接收大数据(可能高达 10K)。 我目前的实现如下: static size_t wt_callback(char *ptr, size_t size, siz
跟进my previous question关于 Profiler 峰值。我刚刚发现,如果我在 Unity3D 中启用 deep profile 选项,我可以看到 ScrollRect.LateUpd
这是我尝试使用 SSE 加速的示例 C 代码,两个数组的长度为 3072 个元素, double 数,如果我不需要 double 数,可以将其放下以 float 。 double sum = 0.0;
我是一名优秀的程序员,十分优秀!