PHP页面缓存如何解决并发的有关问题呢

WBOY
Release: 2016-06-13 12:47:24
Original
831 people have browsed it

PHP页面缓存怎么解决并发的问题呢?
我不用框架。看了很多资料,都是生成一个静态文件放那里,然后过期了就重新生成,没过期就直接读这个文件里的内容,可是万一大并发的访问,因为我这个是一个在线房间列表,是每分钟就跟新,访问量也很大。

现在就是有2个问题。

1.如果一个人来访问的时候,这个文件正好在生成,会不会发生读到空的情况?

2.我看了手册file_put_contents方法,可以锁 “LOCK_EX  在写入时获得一个独占锁”,我是否应该加上这个参数,但问题是,假设一个人来访问,正好在生成也加了锁,他会等到解锁了再去读取吗,还是说会报错呢?。

求大神解答,非常感谢。 

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