Linux2.4下驱动中定时器的应用我的内核是2.4.18的。Linux的内核中定义了一个定时器的结构:#includestruct timer_list{ struct list_head list;unsigned long expires; //定时器到期时间unsigned long dat...
分类:
系统相关 时间:
2014-08-25 16:51:24
阅读次数:
322
最近在对CDN进行优化,对浏览器缓存深入研究了一下,记录一下,方便后来者画了一个草图:每个状态的详细说明如下:1、Last-Modified在浏览器第一次请求某一个URL时,服务器端的返回状态会是200,内容是你请求的资源,同时有一个Last-Modified的属性标记(HttpReponse He...
分类:
其他好文 时间:
2014-08-25 14:55:44
阅读次数:
236
一、内核定时器定义:struct timer_list { struct list_head entry; unsigned long expires; void (*function)(unsigned long); unsigned long data; struc...
分类:
系统相关 时间:
2014-08-24 11:30:02
阅读次数:
241
安装apache[root@centos64x64ctyun]#tarzxfhttpd-2.2.17.tar.gz[root@centos64x64ctyun]#cdhttpd-2.2.17[root@centos64x64httpd-2.2.17]#./configure--prefix=/application/apache2.2.17--enable-deflate--enable-expires--enable-headers--enable-modules=most--enable-so--wi..
分类:
数据库 时间:
2014-08-22 18:10:59
阅读次数:
233
htaccess文件内容:
Header set Cache-Control "max-age=604800, public"
Header set Cache-Control "max-age=18000, public, must-revalidate"
Header set Cache-Control "max-age=3600, must-revalidate"
by...
分类:
数据库 时间:
2014-08-14 10:47:18
阅读次数:
243
缓存有利于网页的加载速度,但有时候,我们不希望页面被缓存,那如何在页面中声明呢?其实在HTML语言中,有现成的禁止缓存的方法,你只需在页面的中加入以下几行声明代码即可:
.代码
<META HTTP-EQUIV="expires" CONTE...
分类:
Web程序 时间:
2014-08-13 19:04:57
阅读次数:
243
设置cookie的各种过期时间默认cookies失效时间是直到关闭浏览器,cookies失效,也可以指定cookies时间。Response.Cookies("user_name").Expires=Date+1 '指定cookie保存时间保留COOKIES一个小时Response.Cookies(...
分类:
其他好文 时间:
2014-08-13 18:31:06
阅读次数:
150
$.cookie("testcookie",?JSON.stringify(data),?{
??????path?:?‘/‘,
??????expires?:?0
?????}); //php代码 setcookie("testcookie",time()-3600,);...
分类:
Web程序 时间:
2014-07-25 00:04:54
阅读次数:
236
public class CacheContainer { private static Hashtable ht = new Hashtable(); /// /// objId :缓存id,objObject:缓存对象,expires:绝...
分类:
Web程序 时间:
2014-07-18 21:20:53
阅读次数:
255
是head区的一个辅助标签names常用的选项有keywords(关键字)description(网站内容描述)auther(作者)robots(机器人向导)http-equiv可代替name项,常用的选项有Expires(期限) Pragma(cache模式) Refresh(刷新)Set-Coo...
分类:
其他好文 时间:
2014-07-18 19:31:09
阅读次数:
209