缓存 JSR107 Java Caching定义了5个核心接口,分别是CachingProvider, CacheManager, Cache, Entry 和 Expiry。 ?CachingProvider定义了创建、配置、获取、管理和控制多个CacheManager。一个应用可以在运行期访问多 ...
分类:
编程语言 时间:
2020-07-07 19:21:15
阅读次数:
84
Given a non-negative index k where k ≤ 33, return the kth index row of the Pascal's triangle. Note that the row index starts from 0. 只额外开O(k)的空间,那就开一个 ...
分类:
其他好文 时间:
2020-07-07 15:03:33
阅读次数:
121
这里主要是有一点: 1 Math.ceil(d1) ceil 方法上有这么一段注释:If the argument value is less than zero but greater than -1.0, then the result is negative zero 如果参数小于0且大于-1 ...
分类:
其他好文 时间:
2020-07-07 13:28:09
阅读次数:
80
此博客链接: 点击文件,新建MYSQL 链接 2.填写链接名和密码,点击测试 3.测试时报以下错误。 查找原因:mysql8.0之前的版本加密规则是mysql_native_password,mysql8.0之后,加密规则是caching_sha2_password。 修改步骤 1.打开控制台,进到 ...
分类:
其他好文 时间:
2020-07-04 23:01:53
阅读次数:
81
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 elements. Your t ...
分类:
其他好文 时间:
2020-07-03 21:48:09
阅读次数:
68
前言 参考链接: 使用缓存:https://www.cnblogs.com/gygg/p/11275417.html 过期时间:https://www.cnblogs.com/maijin/p/7049355.html 使用过程 引用 Microsoft.Extensions.Caching.Mem ...
分类:
其他好文 时间:
2020-06-30 11:12:45
阅读次数:
64
Jump Game II (H) 题目 Given an array of non-negative integers, you are initially positioned at the first index of the array. Each element in the array r ...
分类:
其他好文 时间:
2020-06-30 09:14:16
阅读次数:
59
1、安装redis yum -y install redis 2、修改redis配置 vim /etc/redis.conf 找到redis.conf 并修改 daemonize no 为 daemonize yes 3、启动redis redis-server /etc/redis.conf 4、 ...
分类:
其他好文 时间:
2020-06-29 13:06:48
阅读次数:
91
Multiply Strings (M) 题目 Given two non-negative integers num1 and num2 represented as strings, return the product of num1 and num2, also represented as ...
分类:
其他好文 时间:
2020-06-29 09:55:34
阅读次数:
55
Trapping Rain Water (H) 题目 Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is ...
分类:
移动开发 时间:
2020-06-29 09:29:26
阅读次数:
60