Redis介绍 Redis 是完全开源的,遵守 BSD 协议,是一个高性能的 key-value 数据库。 性能极高 – Redis能读的速度是110000次/s,写的速度是81000次/s 。 丰富的数据类型 – Redis支持二进制案例的 Strings, Lists, Hashes, Sets ...
分类:
其他好文 时间:
2021-04-28 12:18:30
阅读次数:
0
一、typeof 检测出来的数据类型 --> 基本数据类型 string number boolean null undefined --> 变量初始化了,但是没有赋值 --> 函数没有传实参,那么形参是undefined --> 函数没有返回值,那么函数调用完的地方是undefined --> 复 ...
分类:
Web程序 时间:
2021-04-28 12:17:27
阅读次数:
0
xyj@minecraft:~$ conda install numpy Solving environment: failed InvalidVersionSpecError: Invalid version spec: =2.7 最近使用conda遇到了报错,发现conda的issues有人提出 ...
分类:
其他好文 时间:
2021-04-28 12:14:31
阅读次数:
0
nvidia-smi 如果没有显示的话,说明显卡驱动没装好,需要重新装一下 会打一万遍的指令,到底代表什么意思呢?一起看一下吧: 第一行当然是日期啦 NVIDIA-SMI 450.102.04 Driver Version指的是驱动版本 CUDA Version指的是CUDA版本(当忘记怎么查看CU ...
分类:
编程语言 时间:
2021-04-28 12:09:39
阅读次数:
0
<?xml version="1.0" encoding="UTF-8" ?> <!DOCTYPE generatorConfiguration PUBLIC "-//mybatis.org//DTD MyBatis Generator Configuration 1.0//EN" "http:// ...
分类:
移动开发 时间:
2021-04-28 11:48:02
阅读次数:
0
//多个输入框的情况 if (Number(value) <= Number(se.fullCredit)) { value = value.replace(/[^\d.]/g, '') //清除“数字”和“.”以外的字符 value = value.replace(/^\./g, '') //验证 ...
分类:
其他好文 时间:
2021-04-28 11:44:32
阅读次数:
0
You need to activate the Developer Options and USB Debugging for the purpose. Follow the below mention steps and you would be good to go: 1.Slide into ...
分类:
其他好文 时间:
2021-04-28 11:44:14
阅读次数:
0
<dependencies> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-webmvc</artifactId> <version>5.3.2</version> </dependency> <depe ...
分类:
其他好文 时间:
2021-04-27 15:21:44
阅读次数:
0
一个合法正整数序列,满足:对于每个在序列中出现过的数$k$,满足$k-1$在最后一个$k$前出现过。 对于每个$k$,统计在所有序列中$k$出现的总次数。 \(n\le 10^5\) 首先有个神仙转化: 记二元组$(val,pos)$表示值为$val$,在$pos$位置出现。对其以$val$为第一关 ...
分类:
其他好文 时间:
2021-04-27 15:21:20
阅读次数:
0
1. find . -regex '.*\.c\|.*\.cc' | xargs grep "string" --color --line-number 2. sed -n '5,10p' filename 查看文件的第5行到第10行。 3. grep -o hello test.log | wc ...
分类:
其他好文 时间:
2021-04-27 15:16:42
阅读次数:
0