1 分组求TopN 一、先看数据: 使用HiveSQL常用的方式为: Select * from table, row_number() over(partition by item order by score desc) rank where rank<=2; 二、输出结果为: 三、解析:row ...
分类:
数据库 时间:
2021-06-13 10:48:09
阅读次数:
0
WEB服务与NGINX(2)-NGINX的I/O模型 1. linux I/0模型及在NGINX中的应用 1.1 I/O模型概述 I/O在计算机中指的是INPUT和OUPUT,IOPS(INPUT/OUTPUT per second)每秒的输入输出量(或读写次数),是衡量I/O性能的主要指标之一。 ...
分类:
Web程序 时间:
2021-06-13 10:47:01
阅读次数:
0
CentOS 安装 nginx 教程 下载安装包 cd /usr/local wget http://nginx.org/download/nginx-1.19.8.tar.gz 安装依赖 yum install gcc-c++ yum install pcre yum install pcre-d ...
分类:
其他好文 时间:
2021-06-13 10:38:46
阅读次数:
0
基本思路 插入排序的基本思想可以参考我们整理扑克牌时的情况,当我们刚拿到洗好的牌,我们会按照顺序将每一张牌插入到其他已经有序的牌中。 对应到插入排序,我们可以定义一个操作insertion: 假设我们正在处理第n个元素,首先要比较第n个元素和第n-1个元素,若是arr[n]小于arr[n-1],则交 ...
分类:
编程语言 时间:
2021-06-13 10:32:18
阅读次数:
0
1.Eureka挂掉后,服务之间能否正常调用? 不能,服务之间调用,需要根据服务名获取对应服务的主机ip及端口,挂掉后客户端不能获取。 2.ES中的索引和Mysql中的索引区别? ES中的索引数据结构时倒排索引,Msql中的索引时B+树 3.Eureka注册信息时主动推送还是手动拉取? 手动拉取 4 ...
分类:
其他好文 时间:
2021-06-13 10:25:42
阅读次数:
0
mysql-索引 21.6.12【索引的分类】 单列索引:索引加在一个列上 普通索引(normal): alter table user add index `name`(`name`) 唯一索引(unique): alter table user add unique index `code`(` ...
分类:
数据库 时间:
2021-06-13 10:24:21
阅读次数:
0
###TP5.1 下载安装Redis 配置redis信息 <?php namespace app\common\redis; class RedisHandler { public $provider; //创建实例子 private static $_instance = null; //创建re ...
分类:
其他好文 时间:
2021-06-13 10:19:59
阅读次数:
0
nginx.conf配置 #user nobody; user www www; worker_processes 8; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log in ...
分类:
其他好文 时间:
2021-06-13 09:55:40
阅读次数:
0
Innodb体系架构 后台线程、内存池、数据文件 ...
分类:
数据库 时间:
2021-06-13 09:46:07
阅读次数:
0
pymysql连接报错: _init__() takes 1 positional argument but 5 positional arguments (and 1 keyword-only argument) were given 解决方法: 连接方法加属性名称,例 pymysql.conne ...
分类:
其他好文 时间:
2021-06-13 09:42:22
阅读次数:
0