1.redis安装 1.下载安装包 将redis-5.0.2.tar.gz放到opt目录下 2.解压源码包 [root@CentOS7 opt]# tar -zxvf redis-5.0.2.tar.gz #解压会生成一个redis-5.0.5的目录 3.安装GCC依赖 [root@CentOS7 ...
分类:
其他好文 时间:
2020-05-15 15:57:00
阅读次数:
66
题目链接 (Thanos)[https://open.kattis.com/problems/thanos] 题目 Thanos Dr. Thanos, data scientist and self described nihilist, recently published a paper ti ...
分类:
其他好文 时间:
2020-05-13 10:11:35
阅读次数:
81
There are lots of "tutorials" about promise in the internet. Recently I am studying the frontend code of SAP Cloud for Customer and I come across a re ...
分类:
其他好文 时间:
2020-05-07 22:58:06
阅读次数:
71
Recently when I do self study on Vue I find many articles in the internet with full of praise on "Vue" ‘s reactive Two Way Data binding trait. This fa ...
分类:
其他好文 时间:
2020-05-07 22:47:49
阅读次数:
138
CanChen ggchen@mail.ustc.edu.cn Recently I am following Optimization lectured by Prof.Zhouwang Yang at USTC. Opt lies at the heart of ML. Why I choose ...
分类:
其他好文 时间:
2020-05-05 10:58:38
阅读次数:
47
Redis 的淘汰策略: 1、noeviction: 不删除策略, 达到最大内存限制时, 如果需要更多内存, 直接返回错误信息。 大多数写命令都会导致占用更多的内存(有极少数会例外, 如 DEL )。 2、allkeys-lru: 所有key通用; 优先删除最近最少使用(less recently ...
分类:
其他好文 时间:
2020-05-04 17:16:52
阅读次数:
54
LRU全称Least Recently Used,也就是 最近最少使用的意思,是一种内存管理算法,该算法最早应用于 Linux操作系统。 这个算法基于一种假设:长期不被使 用的数据,在未来被用到的几率也不大。因此,当数据所占内存达 到一定阈值时,我们要移除掉最近最少被使用的数据。 LRU算法中,使用 ...
分类:
编程语言 时间:
2020-04-30 13:33:34
阅读次数:
65
I I HDU 3466Proud Merchants(贪心+01背包) Recently, iSea went to an ancient country. For such a long time, it was the most wealthy and powerful kingdom in ...
分类:
其他好文 时间:
2020-04-20 14:04:37
阅读次数:
77
mybatis缓存: 从数据查询数据时,会把结果放入缓存池。 在没有对这个表进行修改操作时,调用同一个方法时,相同查询语句会直接读取缓存池中的结果。 当缓存池满时,会把最近没有被使用的缓存中的数据覆盖掉。(LRU least recently used); 其中主要使用了linkedHashMap ...
分类:
编程语言 时间:
2020-04-13 12:33:39
阅读次数:
70
中文题目链接 Recently, Peter saw the equation x0+2x1+4x2+...+2mxm=nx0+2x1+4x2+...+2mxm=n. He wants to find a solution (x0,x1,x2,...,xm)(x0,x1,x2,...,xm) in ...
分类:
其他好文 时间:
2020-04-04 09:53:21
阅读次数:
51