随机推荐浏览过的商品,进行随机推荐,并且实现换一批不会重复

WBOY
Release: 2016-06-06 20:12:36
Original
2009 people have browsed it

随机推荐算法:
根据每个人的浏览记录,进行系统查询,需要进行随机推荐商品,而且进行换一批的时候不能推荐已经推荐过的商品?
mysql还是redis进行实现?

回复内容:

随机推荐算法:
根据每个人的浏览记录,进行系统查询,需要进行随机推荐商品,而且进行换一批的时候不能推荐已经推荐过的商品?
mysql还是redis进行实现?

推荐使用Redis实现,用hash类型的key-value标记已推荐的商品,下次推荐结果在Redis进行比较,未推荐的通过并标记。

Hash性能要远高于SQL检索,故选择Redis,请求时间可以降到ms个位数,部署到专用的Redis服务器,可以不占用mysql负载,目前的最佳选择。

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template