1. 存储引擎 1.1 存储引擎相关的命令 查看MySQL提供的所有存储引擎 show engines; MySQL当前默认的存储引擎是InnoDB 在5.7版本所有的存储引擎中只有InnoDB支持事务。 查看MySQL当前默认的存储引擎 show variables like `%storage_ ...
分类:
数据库 时间:
2021-04-29 11:38:16
阅读次数:
0
cookie_js npm install cookie_js --save 储存 cookie.set('key', 'value'); cookie.set(key1: 'value1'; key2: 'value2'); 获取 cookie.get('key'); cookie.get('ke ...
分类:
Web程序 时间:
2021-04-27 15:08:52
阅读次数:
0
__thread 线程局部存储 Thread Local Storage(tls),是一种机制,通过这一机制分配的变量,每个当前线程有一个该变量的实例。 在用户层,用一个新的存储类型关键字:__thread 表示这一扩展。 __thread 使用规则: 如果一个线程局部存储变量有一个初始化器,它必须 ...
分类:
其他好文 时间:
2021-04-26 12:57:45
阅读次数:
0
#计算Spark StorageMemory Heap内存 tag: Spark, Spark Memory, Spark Storage Memory 2021-04-23 21:26:25 星期五 version: spark-2.4.5 Executor 进程 org.apache.spark ...
分类:
其他好文 时间:
2021-04-24 13:38:45
阅读次数:
0
1、改成本地模式 . val conf = new SparkConf().setAppName("ScalaWordCount").setMaster("local") 2、编写入参 传参 ...
分类:
其他好文 时间:
2021-04-24 13:30:06
阅读次数:
0
1. 用Pyspark自主实现词频统计过程。 >>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] ...
分类:
其他好文 时间:
2021-04-23 12:19:08
阅读次数:
0
>>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] + 1...>>> ss = sorted( ...
分类:
其他好文 时间:
2021-04-23 12:18:32
阅读次数:
0
1. 用Pyspark自主实现词频统计过程。 >>> s = txt.lower().split()>>> dd = {}>>> for word in s:... if word not in dd:... dd[word] = 1... else:... dd[word] = dic[word] ...
分类:
其他好文 时间:
2021-04-23 12:10:50
阅读次数:
0
##一、 //挂载路由导航守卫,控制页面访问权限 //to 将要访问的路径 //from 代表从哪个路径跳转而来 //next 是一个函数,表示放行 // next() 放行 next('/login') 强制跳转 router.beforeEach((to, from, next) => { if ...
分类:
其他好文 时间:
2021-04-21 12:30:59
阅读次数:
0
python - How to interpret results of Spark OneHotEncoder - Stack Overflow ...
分类:
其他好文 时间:
2021-04-20 15:16:33
阅读次数:
0