当然使用squid反向代理加速也行,但是配置安装成本比较高。
另外,你可以把页面的内容放到项目的上下文里,这样不用访问数据库,直接从内存里拿就好了。
当然还有很多方式,数据库缓存,应用程序缓存等等都可以。
你的意思是请求后台的时候吗,使用ajax请求后台可以设置为不缓存cache : false,$.ajax({
url : encodeRedirectURL("后台处理类path"),
type : 'post',
dataType : 'json',
async: true,
ifModified : false,
cache : false,
data : params,
error : function(){
BussInfo.viewMessage("")
$("#uimMsgSpan").html("网络繁忙,请稍后再试!")
$("#UIMnbr").attr("validate",false)
},
success : function(json){
BussInfo.viewMessage(json.message)
$("#UIMnbr").attr("validate",json.success)
}
})
sp页面禁止缓存设置
1.客户端缓存要在<head>中加入类似如下内容:
Html代码
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
2.在服务器的动态网页中禁止缓存,要加入类似如下脚本
Java代码response.setHeader("Pragma","No-cache")
response.setHeader("Cache-Control","no-cache")
response.setDateHeader("Expires", 0)
3.设置有限时间的缓存
Java代码int minutes = 10
Date d = new Date()
String modDate = d.toGMTString()
String expDate = null
expDate = (new Date(d.getTime() + minutes * 60000)).toGMTString()
response.setHeader("Last-Modified", modDate)
response.setHeader("Expires", expDate)
response.setHeader("Cache-Control", "public")// HTTP/1.1
response.setHeader("Pragma", "Pragma")// HTTP/1.0
4.最后如果以上方法都不行的话,就在你的正常的URL后面加上一个尾巴
在JS中就选择
var timestamp = (new Date()).valueOf()
URL+"&timestamp="+timestamp
在Java代码中就选择
long timestamp=new Date().getTime()
URL+"&timestamp="+timestamp
这样的话,你的URL始终都在变化,自然浏览器就得老老实实的进行更新了,它也无缓冲可拿了。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)