码迷,mamicode.com
首页 >  
搜索关键字:header cache    ( 18043个结果
通过ProxyServlet实现可编程的反向代理
说道反向代理,可能首先想到的就是nginx。不过在我们的需求中,对于转发过程有更多需求:需要操作session,根据session的取值决定转发行为需要修改Http报文,增加Header或是QueryString第一点决定了我们的实现必定是基于Servlet的。jetty提供的ProxyServle...
分类:其他好文   时间:2014-05-10 18:58:46    阅读次数:1057
为F5-LTM上的业务添加x-forward-for功能
最近拿到一个旧设备:BIG-IP LTM 6400,玩的人不在,文档又不足;只能自己玩了~SNAT模式下,走HTTP代理,往http header中的x-forwarded-for加入源IP,以便让后端设备取得源IP万事不懂先问谷歌感谢以下:1、F5官方解答:可以通过两种方式,一是通过http pr...
分类:其他好文   时间:2014-05-10 06:09:53    阅读次数:1691
使用varnish实现网站动静分离
一、Varnish简介Varnish是一款高性能、开源的反向代理服务器和缓存服务器,其开发者Poul-HenningKamp是FreeBSD核心的开发人员之一。Varnish主要运行两个进程:Management进程和Child进程(也叫Cache进程)。Management进程主要实现应用新的配置、编译VCL、监控varnish、初始化var..
分类:Web程序   时间:2014-05-10 04:14:44    阅读次数:605
oracle cursor
Oracle will generate something called cursor after it parse an statement. This thing--cursor will be stored in Library cache, if next time you need to...
分类:数据库   时间:2014-05-10 01:02:22    阅读次数:579
LVS+Keepalived+Squid+Nginx+MySQL主从高性能集群架构部署方案
方案一,在tomcat的workers.properties里面配置相关条件worker.tomcat.lbfactor=50worker.tomcat.cachesize=10worker.tomcat.cache_timeout=600worker.tomcat.socket_keepalive...
分类:数据库   时间:2014-05-09 15:51:54    阅读次数:636
PHP使用PHPEXCEL导入Excel
下载PHPEXCEL后放到项目里。 public function InExcel() { //设定缓存模式为经gzip压缩后存入cache(PHPExcel导入导出及大量数据导入缓存方式的修改 ) $cacheMethod = PHPExcel_CachedOb...
分类:Web程序   时间:2014-05-09 12:56:38    阅读次数:528
有关Cache –(1) linux list之中的Prefetc
转载:http://www.kernelchina.org/node/1050linux的list实现之中有如下东东:#define list_for_each(pos, head) \ for (pos = (head)->next; prefetch(pos->next), pos != (h....
分类:系统相关   时间:2014-05-09 10:04:38    阅读次数:323
C# CacheHepler Class
internal class CacheHelper { /// /// Insert value into the cache using /// appropriate name/value pairs /// //...
分类:其他好文   时间:2014-05-09 04:19:56    阅读次数:246
PE代码段中的数据
PE代码段中可能包含一些数据,比如 optional header中的data directory会索引到一些数据,比如import/export table等等; 还有一些jump table/switch table等等。 一般来说,direct/indirect call/branch的目标,...
分类:其他好文   时间:2014-05-09 03:24:13    阅读次数:350
Python发一个GET请求
# -*- coding: utf-8 -*- try: import httplib2 except ImportError: print('错误:') print(' httplib2这个XML解析库没有找到,程序无法继续执行!') exit(255) def network_get_proc(self, use_cache = True): '''POST动作'...
分类:编程语言   时间:2014-05-09 01:39:09    阅读次数:337
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!