Home >Backend Development >PHP Tutorial >如何用php制作收藏文章功能,要尽量高效率

如何用php制作收藏文章功能,要尽量高效率

WBOY
WBOYOriginal
2016-06-06 20:29:461231browse

如何用php做一个文章收藏功能呢?如果每一个收藏都添加一条记录我觉得太浪费资源了,有没有其他的高效率的方法来做文章收藏功能?

回复内容:

如何用php做一个文章收藏功能呢?如果每一个收藏都添加一条记录我觉得太浪费资源了,有没有其他的高效率的方法来做文章收藏功能?

用mysql中建表给每个用户一条记录,一个字段设为text类型,保存各篇文章ID,ID值用逗号隔开。
最好的方式是用redis的set数据类型,速度快

用缓存把收藏人的id存起来

用MySQL存储用户会话信息:
其中session字段存储的是关联数组经过序列化或者json_encode的字符串,可以实现存储收藏夹,购物车等等功能.如果把sessid设为Memcached/Redis的key,还可以使用NoSQL进行存储,不过数据持久化是个问题.

Statement:
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