<template> <div id="app"> <input type="text" v-model='todo' @keydown="doAdd($event)" /> <hr> <br> <h2>进行中</h2> <ul> <li v-for="(item,key) in list" v-i ...
分类:
其他好文 时间:
2021-04-08 13:13:21
阅读次数:
0
Redis 中 BitMap 的使用场景 BitMap BitMap 原本的含义是用一个比特位来映射某个元素的状态。由于一个比特位只能表示 0 和 1 两种状态,所以 BitMap 能映射的状态有限,但是使用比特位的优势是能大量的节省内存空间。 在 Redis 中,可以把 Bitmaps 想象成一个 ...
分类:
其他好文 时间:
2021-04-08 13:08:56
阅读次数:
0
###1、创建表空间 create tablespace TESTDATE表空间名 datafile 'E:\app\HP\oradata\orcl\TESTDATE.dbf(表空间DBF文件路径及名称)' size 500M (表空间大小) AUTOEXTEND ON NEXT 50M (每次自动 ...
分类:
数据库 时间:
2021-04-08 12:56:21
阅读次数:
0
参考: 1.博客1:https://www.pianshen.com/article/4305691855/ fork:在原进程的基础上“分叉”出一个子进程,即创建一个子进程。 NAME fork - create a child process SYNOPSIS #include <unistd. ...
分类:
编程语言 时间:
2021-04-07 11:38:09
阅读次数:
0
https://www.jianshu.com/p/db5fe7fed9f3 https://blog.csdn.net/l7022995/article/details/79321924 https://www.jianshu.com/p/840943eff17b 打包脚本 # You can d ...
分类:
其他好文 时间:
2021-04-07 11:30:16
阅读次数:
0
static void Main(string[] args) { GetMd5(); } public static void GetMd5() { string str = "123"; //创建md5对象,是静态方法。不能new MD5 mymd5 = MD5.Create(); //comp ...
分类:
编程语言 时间:
2021-04-07 11:23:31
阅读次数:
0
参考:https://blog.csdn.net/weixin_41710606/article/details/86747877 1. CONDA切换成32位set CONDA_FORCE_32BIT=1 2. 安装32位的python3.6conda create -n python32 pyt ...
分类:
编程语言 时间:
2021-04-07 11:23:01
阅读次数:
0
vue v-for循环中为什么要用key?为什么index不能作为key? key 的特殊 attribute 主要用在 Vue 的虚拟 DOM 算法,在新旧 nodes 对比时辨识 VNodes。如果不使用 key,Vue 会使用一种最大限度减少动态元素并且尽可能的尝试就地修改/复用相同类型元素的 ...
分类:
其他好文 时间:
2021-04-07 11:14:51
阅读次数:
0
切换到数据库用户Oracle su oracle lsnrctl start 启动数据库监听端口 登录SQLplus sqlplus /nolog conn / as sysdba 链接数据库 startup 启动 ...
分类:
数据库 时间:
2021-04-07 10:57:03
阅读次数:
0
一、词频统计: 1.读文本文件生成RDD 2.将文本分割成单词 words 3.全部转换为小写 4.去掉长度小于3的单词 5.去掉停用词 6.转换成键值对 map() 7.统计词频 reduceByKey() 二、学生课程分数 groupByKey() -- 按课程汇总全总学生和分数 1. 分解出字 ...
分类:
其他好文 时间:
2021-04-06 15:20:05
阅读次数:
0