当前位置:网站首页>How does easydss handle the problem that the sharing page cannot be opened due to cache problems?
How does easydss handle the problem that the sharing page cannot be opened due to cache problems?
2022-06-24 02:40:00 【Tsingsee green rhino video】
EasyDSS Live video / VOD service platform has been born up to now , We've done a lot of feature updates and upgrades , except EasyDSS Outside ,TSINGSEE All platforms of Qingxi video have demonstration platforms for reference , Users can enter the demo platform reading interface , There are also test versions for you to download and test , If you are interested, please contact us for testing .
There is a project team and we reflect on the EasyDSS The video channel sharing address cannot be opened , But you can watch it live , Pictured :
We don't see ts Error reporting of documents , So the main problem is caching . ad locum , If we try to operate in traceless mode , You can see the live broadcast .
So how to avoid this problem ? Both front and back ends can be solved by code , Front-end html Embedded in the page meta label :
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=8"> <meta http-equiv="Expires" content="0"> <meta http-equiv="Pragma" content="no-cache"> <meta http-equiv="Cache-control" content="no-cache"> <meta http-equiv="Cache" content="no-cache">
You can force the cache to be removed through these tags , The back end can also use code to solve this problem , With Java For example :
response.setHeader("Cache-Control","no-cache");
response.setHeader("Pragma","no-cache");
response.setDateHeader("Expires",0); Adding these can remove code at the back end , Let the page not cause cache problems .
边栏推荐
- How to strengthen prison security measures? Technologies you can't imagine
- Is the IP of the fortress machine the IP of the server? How to deploy the fortress machine
- Wwise + GME game voice scheme: unlock more voice playing methods and let players "sound in their environment"
- Uipickerview show and hide animation
- Question: can you get download the resources of Baidu online disk?
- Add strikethrough to uilabel
- How to understand EDI requirements of trading partners
- Opengl: how to use shader to convert RGBA to nv21 image format? (open source for the first time in the whole network)
- What is the performance improvement after upgrading the 4800h to the 5800h?
- Cloudpods golang practice
猜你喜欢
随机推荐
November 1 global network security hotspot
The cloud game is rendered by the server. How much broadband does the server need
How to build a website? What needs attention?
2021 game security industry summit: Security Co Construction and healthy development of escort industry
Compile blender source code
Centeros environment setup
Objective-C downloads pictures from the network, saves them, and displays them from the save with uiimageview
How to understand EDI requirements of trading partners
How to build video websites? What are the types of video websites?
How to change the cloud desktop domain server password if you forget it?
Kibana report generation failed due to custom template
Opengl: how to use shader to convert RGBA to nv21 image format? (open source for the first time in the whole network)
[security] Tencent cloud double 12 is not limited to new and old users! Safe sub venue - discount guide! Unlimited account types!
Start tcapulusdb process
What about foreign trade companies? Is this another difficult year?
How to build a website? These things should be paid attention to
Deep and shallow copy
How to protect your code - ollvm (1)
Why enterprises need fortress machines
Solution to session problem of missing laravel jump page


