码迷,mamicode.com
首页 >  
搜索关键字:cache buffer free    ( 18053个结果
hbase-16-写入流程
Hbase 写入流程大致分为三个步骤: 1.客户端请求 首先在meta cache 根据rowKey查找该rowKey对应的Region Server,如果有则直接发送请求到RegionServer。 如果客户端缓存中没有查到对应的rowkey信息,需要首先到ZooKeeper上/hbase-roo ...
分类:其他好文   时间:2021-07-28 21:35:55    阅读次数:0
Leeetcode 221 最大正方形 DP
JAVA DP 反向: public final int maximalSquare(char[][] matrix) { int xLen = matrix.length, yLen = matrix[0].length, re = 0; int[][] cache = new int[xLen] ...
分类:其他好文   时间:2021-07-23 17:42:02    阅读次数:0
实现线程池-Linux C版本
线程池的作用 在多线程的应用中,线程的频繁创建和销毁会浪费时间,从而影响效率,所以引进线程池和概念,将多个线程维护在线程池中,避免了线程频繁创建与销毁的开销问题 线程池的结构 结构体 struct threadpool_t { pthread_mutex_t lock; //互斥锁 pthread_ ...
分类:编程语言   时间:2021-07-19 16:30:19    阅读次数:0
记录k8s安装过程
yum -y install wget telnet net-tools lrzsz vim zip unzip 修改主机名 将master节点主机名修改为k8s-master01 node节点为k8s-node01 以这种命名规则命名即可 关闭防火墙 systemctl stop firewall ...
分类:其他好文   时间:2021-07-16 17:44:33    阅读次数:0
C语言动态分配内存及回收
用malloc和free;类似与C++的new和delete 代码: #include <iostream> #include <string> using namespace std; int main(int argc, char* argv[]) { void* ptr = (void*)ma ...
分类:编程语言   时间:2021-07-15 18:57:44    阅读次数:0
性能优化之数据库篇
性能优化-数据库篇1 首先我们要谈论什么是性能? 吞吐和延迟 没有量化就没有改进 :监控和度量指标可以指导我们从哪里入手 80/20原则:先优化性能瓶颈的地方 过早的优化是万恶之源:选择合适的优化时机 脱离场景谈性能都是耍流氓:对性能的要求要符合实际 一般来说,DB/SQL操作的消耗在一次处理中占比 ...
分类:数据库   时间:2021-07-14 18:43:34    阅读次数:0
SpringBoot缓存管理(二) 整合Redis缓存实现
SpringBoot支持的缓存组件 在SpringBoot中,数据的缓存管理存储依赖于Spring框架中cache相关的org.springframework.cache.Cache和org.springframework.cache.CacheManager缓存管理器接口。 如果程序中没有定义类型 ...
分类:编程语言   时间:2021-07-12 18:18:45    阅读次数:0
Cygwin安装器交互式bat自动调用脚本
@echo off set "PATH=%~dp0bin;%path%" echo. echo 当前配置 echo. bash --login -c "echo mirror=`apt-cyg mirror`;echo cache=`apt-cyg cache`;echo;apt-cyg proxy ...
分类:Windows程序   时间:2021-07-12 17:53:56    阅读次数:0
Automate Cache Poisoning Vulnerability
https://blog.melbadry9.xyz/fuzzing/nuclei-cache-poisoning id: cache-poisoning info: name: Cache Poisoning author: melbadry9 & xelkomy severity: lowreq ...
分类:系统相关   时间:2021-07-05 18:59:59    阅读次数:0
QEMU树莓派下配置及安装软件-3
1、设置加速,修改/etc/apt/sources.list如下 deb http://mirrors.tuna.tsinghua.edu.cn/raspbian/raspbian/ buster main contrib non-free rpi deb-src http://mirrors.tu ...
分类:其他好文   时间:2021-07-05 16:54:39    阅读次数:0
18053条   1 2 3 4 ... 1806 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!