码迷,mamicode.com
首页 >  
搜索关键字:cache fusion    ( 8652个结果
nginx实现range请求
前提条件:nginx支持ngx_http_slice_module模块 配置文件示例: #location 块的配置: location /asd/ { slice 512k; proxy_cache cache; proxy_cache_key $uri$is_args$args$slice_ra ...
分类:其他好文   时间:2020-07-19 00:50:36    阅读次数:186
spring boot:使用spring cache+caffeine做进程内缓存(本地缓存)(spring boot 2.3.1)
一,为什么要使用caffeine做本地缓存? 1,spring boot默认集成的进程内缓存在1.x时代是guava cache 在2.x时代更新成了caffeine, 功能上差别不大,但后者在性能上更胜一筹, 使用caffeine做本地缓存,取数据可以达到微秒的级别, 一次取数据用时经常不足1毫秒 ...
分类:编程语言   时间:2020-07-19 00:47:58    阅读次数:94
buffer & cache
清除buffer和cache echo 3 > /proc/sys/vm/drop_cashes 磁盘操作: 逻辑级: 文件系统,块为最小寻址单元(文件块,I/O块)每个块包含一个或多个扇区,直接缓存文件系统数据(有文件系统参与),操作对象为文件 物理级: 磁盘块,扇区为最小寻址单元(设备块) bu ...
分类:系统相关   时间:2020-07-18 19:46:12    阅读次数:75
Springboot工程Mybatis二级缓存配置
1、在application.yml配置cache-enabled: true mybatis: config-location: classpath:/mybatis-config.xml, classpath:mybatis/mybatis-config.xml mapper-locations ...
分类:编程语言   时间:2020-07-18 19:44:38    阅读次数:147
HttpModule的认识与深入理解
HttpModule的认识与深入理解 一个HTTP请求在HttpModule容器的传递过程中,会在某一时刻(ResolveRequestCache事件)将这个HTTP请求传递给HttpHandler容器。在这个事件之后,HttpModule容器会建立一个HttpHandler的入口实例,但是此时并没 ...
分类:Web程序   时间:2020-07-17 22:11:50    阅读次数:103
.Net Gacutil工具(全局程序集缓存工具)使用教程
GAC(Global Assembly Cache)全局程序集缓存,是用于存放.Net应用程序共享的程序集。 像平常我们在Visual Studio中引用系统程序集时,这些程序集便来自于GAC。 下面介绍如何使用Gacutil.exe来对GAC进行管理 Gacutil会随 Visual Studio ...
分类:Web程序   时间:2020-07-17 13:59:16    阅读次数:93
leetcode148two-sum
Given an array of integers, find two numbers such that they add up to a specific target number. The function twoSum should return indices of the two n ...
分类:其他好文   时间:2020-07-17 13:33:50    阅读次数:46
centos7.2 zabbix配置
OS:7.2.1511(Core)[root@zabbix-server~]#cat/etc/redhat-releaseCentOSLinuxrelease7.2.1511(Core)[root@zabbix-server~]#cat/etc/redhat-releaseCentOSLinuxrelease7.2.1511(Core)1,下载CentOS7的repo文件wget-O/etc/yu
分类:其他好文   时间:2020-07-17 01:18:57    阅读次数:97
java.lang.OutOfMemoryError : GC overhead limit exceeded解决方案
IntelliJ IDEA 启动一个之前运行正常的项目失败,报错是: java.lang.OutOfMemoryError : GC overhead limit exceeded 百度了一下,说是 IntelliJ IDEA 设置的内存太小,需要设置大一点。修改完成后,果然可以运行了,这里记录一下 ...
分类:编程语言   时间:2020-07-16 21:48:15    阅读次数:310
http中的Cache-Control:must-revalidate首部
cache-control:must-revalidate 首部会对过期后的缓存进行验证 1.must-revalidate和no-cache的区别 no-cache会强制验证缓存(无论缓存是否过期),而must-revalidate只会验证过期后的缓存。 2.为什么需要must-revalidat ...
分类:Web程序   时间:2020-07-16 21:27:35    阅读次数:78
8652条   上一页 1 ... 23 24 25 26 27 ... 866 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!