Anton likes to listen to fairy tales, especially when Danik, Anton's best friend, tells them. Right now Danik tells Anton a fairy tale: "Once upon a t ...
分类:
其他好文 时间:
2020-05-08 16:30:33
阅读次数:
73
区分insert into 和 insert overowrite: 0、 命令格式 INSERT OVERWRITE|INTO TABLE tablename [PARTITION (partcol1=val1, partcol2=val2 ...)] [(col1,col2 ...)] sele ...
分类:
其他好文 时间:
2020-05-07 13:24:09
阅读次数:
74
redis 5.0.5 安装脚本: redis 5.0.5 配置文件: ...
分类:
其他好文 时间:
2020-05-07 09:24:51
阅读次数:
84
toLowerCase() 方法用于把字符串转换为小写 toUpperCase() 方法用于把字符串转换为大写 <script> var txt="Runoob"; document.write(txt.toLowerCase() + "<br>"); document.write(txt.toUp ...
分类:
Web程序 时间:
2020-05-07 09:19:54
阅读次数:
59
1 import tensorflow as tf 2 import os 3 import numpy as np 4 from matplotlib import pyplot as plt 5 6 7 np.set_printoptions(threshold=np.inf) 8 9 10 m ...
分类:
其他好文 时间:
2020-05-06 23:17:10
阅读次数:
116
rwx r xr r x root root r:读 (read) 4 w:写(write) 2 x:执行(execute) ``1 没有权限 0 权限 的前三位 rwx 属主权限位(用户权限) r xr 属组权限位 r x 其他权限 root 用户权限 root 用户组 前3位 用户权限位 中3位 ...
分类:
系统相关 时间:
2020-05-06 14:14:23
阅读次数:
70
代码示例1:客户端发送信息给服务端,服务端将数据显示在控制台上 //客户端 @Test public void client() { Socket socket = null; OutputStream os = null; try { //1.创建Socket对象,指明服务器端的ip和端口号 In ...
分类:
其他好文 时间:
2020-05-06 01:01:26
阅读次数:
55
副本集介绍副本集是什么-MongoDB复制是将数据同步在多个服务器的过程。-复制提供了数据的冗余备份,并在多个服务器上存储数据副本,提高了数据的可用性,并可以保证数据的安全性。-复制还允许您从硬件故障和服务中断中恢复数据复制原理副本集工作过程mongodb的复制至少需要两个节点。其中一个是主节点,负责处理客户端请求,其余的都是从节点,负责复制主节点上的数据。mongodb各个节点常见的搭配方式为:
分类:
数据库 时间:
2020-05-05 21:54:31
阅读次数:
87
原文: https://www.cnblogs.com/liuxianan/p/linux_install_svn_server.html 安装 使用yum安装非常简单: yum install subversion 配置 2.1. 创建仓库 我们这里在/home下建立一个名为svn的仓库(repo ...
分类:
系统相关 时间:
2020-05-05 20:21:08
阅读次数:
80