1.下载chrome浏览器 wget https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb 或者 https://www.chrome64bit.com 2.安装 gdeb apt-cache search ...
分类:
其他好文 时间:
2020-07-21 11:42:31
阅读次数:
136
Proxy安装程序1、安装mariadb首先需要安装mariadb-serveryuminstall-ymariadb-server启动服务[root@VM_0_13_centosweb]#systemctlstartmariadb.service添加到开机启动[root@VM_0_13_centosweb]#systemctlenablemariadb.service2、获取/zabbix-pr
分类:
其他好文 时间:
2020-07-21 11:40:06
阅读次数:
102
/** 请求 * @Author: xuhong * @Date: 2020/6/19 * @DESC: //TODO */ /** * 发送请求,处理请求失败 * * request(url, method, data, callback) * request(url, method, callb ...
分类:
Web程序 时间:
2020-07-20 13:11:43
阅读次数:
82
package example.java; /** * @author 杜科 * @description 简单动态字符串,非线程安全。采取类似buffer的设计,使其成为一个可以方便重用的StringBuilder * @contact AllenDuke@163.com * @date 2020 ...
分类:
其他好文 时间:
2020-07-19 23:18:33
阅读次数:
92
搬运自我的CSDN https://blog.csdn.net/u013213111/article/details/107031986 最近在多核ARM芯片上搞并行计算,涉及到核间数据交互,因此对多核cache coherence稍作探究。想解决的疑问是:各个核之间是否“知道”内存中的数据被其他核 ...
分类:
系统相关 时间:
2020-07-19 15:51:21
阅读次数:
172
前提条件: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
一,为什么要使用caffeine做本地缓存? 1,spring boot默认集成的进程内缓存在1.x时代是guava cache 在2.x时代更新成了caffeine, 功能上差别不大,但后者在性能上更胜一筹, 使用caffeine做本地缓存,取数据可以达到微秒的级别, 一次取数据用时经常不足1毫秒 ...
分类:
编程语言 时间:
2020-07-19 00:47:58
阅读次数:
94
清除buffer和cache echo 3 > /proc/sys/vm/drop_cashes 磁盘操作: 逻辑级: 文件系统,块为最小寻址单元(文件块,I/O块)每个块包含一个或多个扇区,直接缓存文件系统数据(有文件系统参与),操作对象为文件 物理级: 磁盘块,扇区为最小寻址单元(设备块) bu ...
分类:
系统相关 时间:
2020-07-18 19:46:12
阅读次数:
75
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
安装请参考官方资料-快速开始,安装gRPC需要安装Go、protocol buffer、protoc-gen-go、gRPC等。 1.安装Go,grpc是用Golang开发的,所以需要安装Go; 2.下载protocol buffer,这是gRPC的协议编译工具,写好proto之后,需要用这个编译。... ...
分类:
其他好文 时间:
2020-07-18 15:29:40
阅读次数:
101