产生原因是Navicat的默认连接的加密策略(mysql_native_password)与mysql8新版(caching_sha2_password)不一致。尝试添加Navicat的加密插件没找到,那就只有通过改数据库的加密策略来完成。 网上有修改 root@localhost 账户地址对应的 ...
分类:
数据库 时间:
2020-04-10 22:51:15
阅读次数:
147
ylbtech-ServiceStack.Caching.IRemoveByPattern.cs 1.返回顶部 1、 #region 程序集 ServiceStack.Interfaces, Version=5.0.0.0, Culture=neutral, PublicKeyToken=02c12 ...
分类:
其他好文 时间:
2020-04-07 14:16:29
阅读次数:
64
Problem : Given an array, rotate the array to the right by k steps, where k is non negative. Example 1: Example 2: Note: Try to come up as many soluti ...
分类:
其他好文 时间:
2020-04-06 18:59:35
阅读次数:
67
Problem : Count the number of prime numbers less than a non negative number, n. Example: 思路 : Solution (C++) : 性能 : Runtime: 208 ms Memory Usage: 6.6 ...
分类:
其他好文 时间:
2020-04-06 00:11:19
阅读次数:
84
Problem : Given a list of non negative integers, arrange them such that they form the largest number. Example 1: Example 2: Note: The result may be ve ...
分类:
其他好文 时间:
2020-04-04 22:44:47
阅读次数:
75
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. Note: The l ...
分类:
其他好文 时间:
2020-03-29 11:03:55
阅读次数:
74
1.Spring 中 AOP 的应用场景、Aop 原理、好处? 答:AOP 用来封装横切关注点,具体可以在下面的场景中使用: Authentication 权限、Caching 缓存、Context passing 内容传递、Error handling 错误处理 Lazy loading 懒加载、 ...
分类:
编程语言 时间:
2020-03-29 01:43:58
阅读次数:
79
1、redis常用命令: 1) 启动服务 redis-server.exe redis.windows.conf 2) 启动客户端: redis-cli.exe -h 127.0.0.1 -p 6379 3) redis 选库和对key的操作命令 3.1)--选择第几个数据库:选择第一个数据库 se ...
分类:
其他好文 时间:
2020-03-27 01:09:06
阅读次数:
108
1. 缓存的读写模式和分类 1)缓存的读写模式 (1) 缓存有3种读写模式 Cache Aside(旁路缓存) Read/Write(读写穿透) Write Behind Caching(异步缓存写入) (2) Cache Aside 写过程:更新DB => 删除cache => DB驱动缓存数据更 ...
分类:
其他好文 时间:
2020-03-26 23:18:53
阅读次数:
114
数据测试的时候出现: 网上查资料说的是mysql5.x 版本和 8.x版本的区别; 5.7版本是:default_authentication_plugin=mysql_native_password 8.x版本就是:default_authentication_plugin=caching_sha ...
分类:
数据库 时间:
2020-03-26 19:08:23
阅读次数:
88