php浏览器缓存解决高并发,该如何解决
php浏览器缓存解决高并发
我在页面头部这样写了一个缓存,
<?php <br />$cache_time = 60*10; //十分钟缓存<br />$modified_time = @$_SERVER['HTTP_IF_MODIFIED_SINCE']; <br />if( strtotime($modified_time)+$cache_time > time() ){ <br /> header("HTTP/1.1 304"); <br /> exit; <br />} <br />header("Last-Modified: ".gmdate("D, d M Y H:i:s", time() )." GMT"); <br />echo "<br />";<br />echo date('Y-m-d H:i:s',time()); <br />?>
问题一:
浏览器在这十分钟之内只会从浏览器去取数据;
问题二:
如果数据库的数据更新,动态页面就不是动态页面的,读的还是浏览器的。怎样可以做到页面更新,缓存重新开始计算呢?有什么办法可以页面变动缓存重新开始?
在线求告诉回答!
大家一般都是怎么解决高并发的问题的呢?
------解决方案--------------------
php只能做一些数据缓冲,解决高并发需要从服务器入手,比如你的Apache,Ngix缓存可以参考smarty
------解决方案--------------------
调用缓存是在,数据没有更新的时候,去调用缓存,在调用缓存的时候应该去判断 数据是否更新 如果存在更新 你再去重新请求数据
------解决方案--------------------
你這種緩存刷新就會更新。
------解决方案--------------------
每次访问页面,浏览器都会像服务端发起请求,你看到的304,200等是服务端告诉浏览器的,而不是浏览器自己判定的。对于动态页面,即使你设了缓存时间,如果数据变动,默认还是会返回最新的数据,而不是浏览器缓存的数据。
------解决方案--------------------
做缓存的话不一定要这么做,可以用memcache,比你这么弄好... 个人想法

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

To work on file upload we are going to use the form helper. Here, is an example for file upload.

In this chapter, we are going to learn the following topics related to routing ?

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

Validator can be created by adding the following two lines in the controller.

Visual Studio Code, also known as VS Code, is a free source code editor — or integrated development environment (IDE) — available for all major operating systems. With a large collection of extensions for many programming languages, VS Code can be c
