从 ruby​​ 中的 UUID v1 中提取时间

发布于 2024-11-24 05:57:29 字数 61 浏览 0 评论 0原文

我存储了以 UUID v1 作为密钥的数据,现在我想知道 UUID 何时生成。我该如何以好的方式做到这一点?

I have stored data that has a UUID v1 as key and I now want to know when the UUID was generated. How do I do that the nice way?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

陌生 2024-12-01 05:57:29

这适用于 irb:

require 'simple_uuid'
uuid = SimpleUUID::UUID.new
uuid.to_guid # actually this is what I have stored in my database
Time.at(SimpleUUID::UUID.new(uuid.to_guid).seconds) # returns the time and date of the UUID

感谢我的朋友 KillerFox,他向我展示了简单的解决方案。

This works with irb:

require 'simple_uuid'
uuid = SimpleUUID::UUID.new
uuid.to_guid # actually this is what I have stored in my database
Time.at(SimpleUUID::UUID.new(uuid.to_guid).seconds) # returns the time and date of the UUID

Thanks to my friend KillerFox, he showed me the simple solution.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文