码迷,mamicode.com
首页 >  
搜索关键字:caching    ( 616个结果
遍历内存中的缓存
System.Web.Caching.Cache _cache = HttpRuntime.Cache; IDictionaryEnumerator CacheEnum = _cache.GetEnumerator();//ArrayList al = new ArrayList(...
分类:其他好文   时间:2014-12-11 13:47:53    阅读次数:152
(java)Guava学习笔记:Google Guava 类库简介
Guava 是一个 Google 的基于java1.6的类库集合的扩展项目,包括 collections, caching, primitives support, concurrency libraries, common annotations, string processing, I/O, 等等. 这些高质量的 API?可...
分类:编程语言   时间:2014-12-11 12:36:32    阅读次数:177
关于System.Web.Caching的“未将对象引用设置到对象的实例”错误
初接触Asp.Net不久,想在后端做个缓存机制,于是使用了System.Web.Caching的Cache类。使用部分的逻辑很简单,但是取值时总报错private static Cache cache = new Cache();public static string LoadCache(stri...
分类:Web程序   时间:2014-12-08 17:35:03    阅读次数:168
c#缓存介绍(转)
缓存主要是为了提高数据的读取速度。因为服务器和应用客户端之间存在着流量的瓶颈,所以读取大容量数据时,使用缓存来直接为客户端服务,可以减少客户端与服务器端的数据交互,从而大大提高程序的性能。本章从缓存所在的命名空间“System.Web.Caching”开始,详细介绍框架提供的缓存类和操作方法,主要涉...
分类:Windows程序   时间:2014-12-08 13:49:22    阅读次数:284
smarty配置文件
caching=true;/*开启缓存*/  $smarty->template_dir="./templates";/*缓存的路径*/  $smarty->compile_dir="./templates_c";/*编译的目录...
分类:其他好文   时间:2014-12-07 23:17:50    阅读次数:213
smarty循环遍历数据库表后在前台显示
1,smarty使用PDO方式循环遍历 <?php //初始化 require?‘../libs/Smarty.class.php‘; //?require?‘chuan.php‘; $smarty?=?new?Smarty; //配置 //?$smarty->debugging?=?true; $smarty->caching?=?fal...
分类:数据库   时间:2014-12-07 01:27:25    阅读次数:632
Microcomputer Principle - Memory Reordering
?? A trip to main memory costs hundreds of clock cycles on commodity hardware. Processors use caching to decrease the costs of memory latency by orders of magnitude. These caches re-order pending mem...
分类:其他好文   时间:2014-11-25 14:26:57    阅读次数:159
Cache类缓存
此处主要总结System.Web.Caching.Cache类 该类是用于存储常用信息的类,HttpRuntime.Cache以及HttpContext.Current.Cache都是该类的实例。该类的成员如下:1、属性属性说明Count获取存储在缓存中的项数。EffectivePercentage...
分类:系统相关   时间:2014-11-24 15:14:14    阅读次数:210
SDCC:可软件定义的存储三——just-in-time caching in an enterprise storage system
协调flash和san,来达到很好的优化的目的。sdcc server通过给client做出caching决定。而client则负责管理局部的数据cache空间,细粒度的监控workload,然后将数据从SAN搬运到DAS,从而达到更短的读请求相应时间。...
分类:其他好文   时间:2014-11-21 18:58:52    阅读次数:296
c# web 缓存管理
using System;using System.Collections;using System.Text.RegularExpressions;using System.Web;using System.Web.Caching;using System.Collections.Generic;...
分类:Windows程序   时间:2014-11-19 18:33:21    阅读次数:274
616条   上一页 1 ... 54 55 56 57 58 ... 62 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!