生成一个 comment_id
低于 comments
表和a notification_id
低于 notification
table?
我知道我可以用 BIGINT
(自动递增)为了这个目的,不用担心很快就会消耗id。但是使用它是一个好的选择吗 UUID()
(或使用特定于持久性的库,例如 UUIDGenerator
在hibernate中)为这些需求生成id?
除了空间分配(在uuid()中很大),使用 UUID()
与…相比 BIGINT/INT
?
1条答案
按热度按时间62o28rlo1#
也许是一篇关于性能测试的有趣文章;https://www.percona.com/blog/2014/12/19/store-uuid-optimized-way/
基于性能,我选择int。