码迷,mamicode.com
首页 >  
搜索关键字:buffer cache    ( 13043个结果
HttpModule的认识与深入理解
HttpModule的认识与深入理解 一个HTTP请求在HttpModule容器的传递过程中,会在某一时刻(ResolveRequestCache事件)将这个HTTP请求传递给HttpHandler容器。在这个事件之后,HttpModule容器会建立一个HttpHandler的入口实例,但是此时并没 ...
分类:Web程序   时间:2020-07-17 22:11:50    阅读次数:103
linux系统mysql索引
索引 一、索引的分类 1.根据算法分类 1)主键索引 #1.建表时创建 create table test(id int primary key); create table test(id int,primary key(id)); #2.添加主键索引 alter table test add p ...
分类:数据库   时间:2020-07-17 16:16:44    阅读次数:52
.Net Gacutil工具(全局程序集缓存工具)使用教程
GAC(Global Assembly Cache)全局程序集缓存,是用于存放.Net应用程序共享的程序集。 像平常我们在Visual Studio中引用系统程序集时,这些程序集便来自于GAC。 下面介绍如何使用Gacutil.exe来对GAC进行管理 Gacutil会随 Visual Studio ...
分类:Web程序   时间:2020-07-17 13:59:16    阅读次数:93
JVM 09.4 运行时数据区 堆 线程独占区域 TLAB
版权声明:源出处:尚硅谷JVM 博客来源于大佬整理 新概念:TLAB(堆当中的线程私有缓存区域) 为什么有TLAB(Thread Local Allocation Buffer) 众所周知堆区是线程共享区域,任何线程都可以访问到堆区中的共享数据。由于对象实例的创建在JVM中非常频繁,因此在并发环境下 ...
分类:编程语言   时间:2020-07-17 13:57:11    阅读次数:65
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
netty 服务端客户端-实例
效果图 Server端代码 package cn.itcast.netty.basic; import io.netty.buffer.ByteBuf; import io.netty.buffer.Unpooled; import io.netty.channel.ChannelHandlerCo ...
分类:Web程序   时间:2020-07-16 21:11:29    阅读次数:85
Docker Gitlab CI 部署 Spring Boot 项目
安装 Gitlab CE 和 Gitlab Runner 若有现成环境,这一步可以忽略 用 Docker-Compose 进行安装 version: '3' #1 services: gitlab: image: gitlab/gitlab-ce:latest #2 container_name: ...
分类:编程语言   时间:2020-07-16 18:22:06    阅读次数:69
13043条   上一页 1 ... 36 37 38 39 40 ... 1305 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!