码迷,mamicode.com
首页 >  
搜索关键字:cache    ( 8390个结果
设置浏览器禁止缓存
response.setHeader("expires", "-1"); response.setHeader("cache-control", "no-cache"); response.setHeader("pragma", "no-chche"); ...
分类:其他好文   时间:2014-09-06 09:43:52    阅读次数:211
Multi-core compute cache coherency with a release consistency memory ordering model
A method includes storing, with a first programmable processor, shared variable data to cache lines of a first cache of the first processor. The metho...
分类:其他好文   时间:2014-09-05 19:38:12    阅读次数:267
Satisfying memory ordering requirements between partial reads and non-snoop accesses
A method and apparatus for preservingmemoryordering in a cache coherent link based interconnect in light of partial and non-coherentmemoryaccesses is ...
分类:数据库   时间:2014-09-05 19:37:41    阅读次数:373
NoCache
HttpContext.Current.Response.Cache.SetExpires(System.DateTime.UtcNow.AddDays(-1)); HttpContext.Current.Response.Cache.SetValidUntilExpir...
分类:其他好文   时间:2014-09-05 17:38:51    阅读次数:185
cache详解
Cache是我们经常关心的话题,K6-Ⅲ的推出引出了一种全新的缓存结构即Tri-level Cache设计思想。那么对于微机系统而言,Cache到底有什么作用?它的工作原理又是如何的呢?    一、使用Cache的必要性         所谓Cache即高速缓冲存储器,它位于CPU与主存即DRAM(Dynamic RAM 动态存储器)之间,是通常由SRAM(Static ...
分类:其他好文   时间:2014-09-05 16:16:03    阅读次数:365
缓存的写法 利用读写锁
public class CacheDemo { private Map cache = new HashMap(); public static void main(String[] args) { // TODO Auto-generated method stub } private Read...
分类:其他好文   时间:2014-09-05 09:49:51    阅读次数:224
Objective-C 之优雅的命名(转)
There are only two hard things in Computer Science: cache invalidation and naming things.在计算机科学中只有两件难事:缓存失效和命名。— Phil Karlton计算机语言是人和计算机之间通讯的媒介。好的代码应该...
分类:其他好文   时间:2014-09-05 00:52:00    阅读次数:259
HttpClient的Post和Get访问网页
一、基础JAR包 Maven工程下pom.xml需配置的jar包 junit junit 4.8.2 test org.apache.httpcomponents httpclient 4.1.2 org.apache.httpcomponents httpclient-cache 4.1.2...
分类:Web程序   时间:2014-09-04 19:04:00    阅读次数:463
25个Apache性能优化技巧推荐
25个Apache性能优化技巧推荐 Apache至今仍处于web服务器领域的霸主,无人撼动,没有开发者不知道。本篇文章介绍25个Apache性能优化的技巧,如果你能理解并掌握,将让你的Apache性能有显著的提升!Apache部分:1. 移除不用的模块。2. 使用 mod_disk_cache NO...
分类:其他好文   时间:2014-09-04 14:33:39    阅读次数:176
【varnish】分流测试案例分析
1.先解释varnish是什么?[摘]Varnish是一款高性能开源的Http加速器(其实是反向代理)。工作流程:与服务器软件类似,分为master(management)进程和child(worker,主要做cache的工作)进程。master进程读入命令,进行一些初始化,然后fork并监控child进程。child进程分配若..
分类:其他好文   时间:2014-09-04 03:00:18    阅读次数:167
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!