redis高并发存入数据库优势在哪里?

WBOY
Release: 2016-06-23 13:48:38
Original
955 people have browsed it

redis高并发存入数据库优势在哪里?

比方说有1W条数据库存入数据库 
redis 是先把1W条数据存入内存 然后异步存入数据库 
但跟直接存入有区别么。。。。。先把他存入内存 不是在增加开销么


回复讨论(解决方案)

redias可以做并发是因为其采用队列。

1W个并发写入数据库,你觉得你的服务器能抗的住?
一个写文件,一个写内存
你说哪个效率高?

Redis为单进程单线程模式,采用队列模式将并发访问变为串行访问。

redis 本身就是数据库,所以“然后异步存入数据库”一说是不存在的

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