示例:投票

问答网站、文章推荐网站、论坛这类注重内容质量的网站上通常都会提供投票功能,用户可以通过投票来支持一项内容或者反对一项内容:

  • 一项内容获得的支持票数越多,它就会被网站安排到越显眼的位置,使得网站的用户可以更快速地浏览到高质量的内容。

  • 与此相反,一项内容获得的反对票数越多,它就会被网站安排到越不显眼的位置,甚至被当作广告或者无用内容而被隐藏起来,使得用户可以忽略这些低质量的内容。

根据网站性质的不同,不同的网站可能会为投票功能设置不同的称呼,比如有些网站可能会把“支持”和“反对”叫做“推荐”和“不推荐”,而有些网站可能会使用“喜欢”和“不喜欢”来表示“支持”和“反对”,诸如此类,但这些网站的投票功能在本质上都是一样的。

作为示例,图 5-8 展示了 StackOverflow 问答网站的一个截图,这个网站允许用户对问题及其答案进行投票,从而帮助用户发现高质量的问题和答案。


图 5-8 StackOverflow 网站的投票示例,图中所示的问题获得了 10 个推荐_images/stackoverflow.png


代码清单 5-4 展示了一个使用集合实现的投票程序:对于每一项需要投票的内容,这个程序都会使用两个集合来分别储存投支持票的用户以及投反对票的用户,然后通过对这两个集合执行命令来实现投票、取消投票、统计投票数量、获取已投票用户名单等功能。


代码清单 5-4 使用集合实现的投票程序,用户可以选择支持或者反对一项内容:/set/vote.py

  1. def vote_up_key(vote_target):
  2. return vote_target + "::vote_up"
  3.  
  4. def vote_down_key(vote_target):
  5. return vote_target + "::vote_down"
  6.  
  7. class Vote:
  8.  
  9. def __init__(self, client, vote_target):
  10. self.client = client
  11. self.vote_up_set = vote_up_key(vote_target)
  12. self.vote_down_set = vote_down_key(vote_target)
  13.  
  14. def is_voted(self, user):
  15. """
  16. 检查用户是否已经投过票(可以是赞成票也可以是反对票),
  17. 是的话返回 True ,否则返回 False 。
  18. """
  19. return self.client.sismember(self.vote_up_set, user) or \
  20. self.client.sismember(self.vote_down_set, user)
  21.  
  22. def vote_up(self, user):
  23. """
  24. 让用户投赞成票,并在投票成功时返回 True ;
  25. 如果用户已经投过票,那么返回 False 表示此次投票无效。
  26. """
  27. if self.is_voted(user):
  28. return False
  29.  
  30. self.client.sadd(self.vote_up_set, user)
  31. return True
  32.  
  33. def vote_down(self, user):
  34. """
  35. 让用户投反对票,并在投票成功时返回 True ;
  36. 如果用户已经投过票,那么返回 False 表示此次投票无效。
  37. """
  38. if self.is_voted(user):
  39. return False
  40.  
  41. self.client.sadd(self.vote_down_set, user)
  42. return True
  43.  
  44. def undo(self, user):
  45. """
  46. 取消用户的投票。
  47. """
  48. self.client.srem(self.vote_up_set, user)
  49. self.client.srem(self.vote_down_set, user)
  50.  
  51. def vote_up_count(self):
  52. """
  53. 返回投支持票的用户数量。
  54. """
  55. return self.client.scard(self.vote_up_set)
  56.  
  57. def get_all_vote_up_users(self):
  58. """
  59. 返回所有投支持票的用户。
  60. """
  61. return self.client.smembers(self.vote_up_set)
  62.  
  63. def vote_down_count(self):
  64. """
  65. 返回投反对票的用户数量。
  66. """
  67. return self.client.scard(self.vote_down_set)
  68.  
  69. def get_all_vote_down_users(self):
  70. """
  71. 返回所有投反对票的用户。
  72. """
  73. return self.client.smembers(self.vote_down_set)

以下代码展示了如何使用这个投票程序去记录一个问题的投票信息:

  1. >>> from redis import Redis
  2. >>> from vote import Vote
  3. >>> client = Redis(decode_responses=True)
  4. >>> question_vote = Vote(client, 'question::10086') # 记录问题的投票信息
  5. >>> question_vote.vote_up('peter') # 投支持票
  6. True
  7. >>> question_vote.vote_up('jack')
  8. True
  9. >>> question_vote.vote_up('tom')
  10. True
  11. >>> question_vote.vote_down('mary') # 投反对票
  12. True
  13. >>> question_vote.vote_up_count() # 统计支持票数量
  14. 3
  15. >>> question_vote.vote_down_count() # 统计反对票数量
  16. 1
  17. >>> question_vote.get_all_vote_up_users() # 获取所有投支持票的用户
  18. {'jack', 'peter', 'tom'}
  19. >>> question_vote.get_all_vote_down_users() # 获取所有投反对票的用户
  20. {'mary'}

图 5-9 展示了这段代码创建出的两个集合,以及这两个集合包含的元素。


图 5-9 投票程序创建出的两个集合_images/IMAGE_VOTE_EXAMPLE.png