在使用Navicat Premium 12连接MySQL数据库时会出现Authentication plugin 'caching_sha2_password' cannot be loaded的错误。 出现这个原因是mysql8 之前的版本中加密规则是mysql_native_password,而 ...
分类:
数据库 时间:
2020-04-30 17:50:37
阅读次数:
106
size_t is a defined type (through typedef) which is basically an unsigned long int. Since the idea of a negative value for a size isn't practical some ...
分类:
其他好文 时间:
2020-04-30 09:31:40
阅读次数:
70
原因:MySQL8之前的版本中加密规则是mysql_native_password,而在MySQL8之后,加密规则是caching_sha2_password解决:mysql-uroot-pusemysql;ALTERUSER‘root‘@‘%‘IDENTIFIEDBY‘123456‘PASSWORDEXPIRENEVER;#更改加密方式ALTERUSER‘root‘@‘%‘IDENTIFIEDW
分类:
数据库 时间:
2020-04-28 17:07:33
阅读次数:
53
version: "3.7" services: mysql: container_name: mysql image: mysql:5.7 #从私有仓库拉镜像 restart: always command: --default-authentication-plugin=mysql_native ...
分类:
数据库 时间:
2020-04-25 16:44:28
阅读次数:
267
一致性哈希算法在1997年由麻省理工学院的Karger等人在解决分布式Cache中提出的,设计目标是为了解决因特网中的热点(Hot spot)问题,初衷和CARP十分类似。一致性哈希修正了CARP使用的简单哈希算法带来的问题,使得DHT可以在P2P环境中真正得到应用。 但现在一致性hash算法在分布 ...
分类:
编程语言 时间:
2020-04-23 00:30:25
阅读次数:
92
前言 是迁移以前的blog。 关于c 缓存在web应用中的一个引导,能够建立起一个缓存的基本思路。 System.Web.Caching 这个真的是老生常谈了,我们只需要key和iv,然后我们就可以进行缓存了,非常的简单。 下面我把这个帮助类也贴一下。 但是呢,我们可能会依赖于一些配置文件,姑且就这 ...
Problem : Given a non empty array of non negative integers nums, the degree of this array is defined as the maximum frequency of any one of its elemen ...
分类:
其他好文 时间:
2020-04-18 18:27:07
阅读次数:
49
Problem : Given a non negative integer, you could swap two digits at most once to get the maximum valued number. Return the maximum valued number you ...
分类:
其他好文 时间:
2020-04-18 13:33:58
阅读次数:
75
/* * 基数序 解决不能负数的问题 */ public static void negative_radix_sortin(int[] str) { // 桶 10个桶 每个桶的最大容量默认为数组长度 int[][] bucket = new int[10][str.length]; // 每个桶 ...
分类:
编程语言 时间:
2020-04-11 23:47:10
阅读次数:
206
Problem : Given two non negative integers num1 and num2 represented as string, return the sum of num1 and num2. Note: 1. The length of both num1 and n ...
分类:
其他好文 时间:
2020-04-11 23:42:02
阅读次数:
75