Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Google App Engine 中使用 Java。
场景是用户可以对文章对象投赞成票和反对票。用户每篇文章只能投票一次。对此最好的实现是什么?
谢谢
创建一个 Vote 实体,其键是用户 ID 和文章 ID。这样,您无需查询即可获得用户投票,并且您不需要交易来创建用户投票。