我有一个JSF应用程序,其中每个站点访问者(无论是否是注册用户)都可以留下多个评论并评估现有评论(竖起/竖起)。我想将评论评分限制为每位访客每天每条评论一个评分。你能推荐我最好的方法吗?我应该尝试记录IP地址,MAC地址(如果可能),还是其他什么?我应该将数据保存在我的数据库中还是用户保存cookie(或其他内容)?
相关表格和字段:
article (id, title, body...)
comment (id, article_id, user_id, text...)
user (id, username...)
// This structure can be changed if needed
谢谢!