1 // 抓取,添加数据 2 public function save(){ 3 require 'QueryList/phpQuery.php'; 4 require 'QueryList/QueryList.php'; 5 // 要抓的网址 6 $url = 'http://www.techwe ...
分类:
其他好文 时间:
2021-01-04 10:33:29
阅读次数:
0
所学时间(包括上课) 9个小时 代码量(行) 1300 博客量 1篇 了解到的知识点 centos虚拟机的安装以及 大数据相应所用的软件安装 以及环境的配置 ...
分类:
其他好文 时间:
2021-01-02 11:40:57
阅读次数:
0
clang比gcc编译效率更高,更多详情自行了解。 不废话,开始配置。 前提:安装好vscode(我还是想废话一下) 需要下载两个东西,链接已附,版本会随时间更新,这用的都是用当前的最新版 1-LLVM https://releases.llvm.org/download.html#11.0.0 2 ...
分类:
编程语言 时间:
2021-01-02 11:34:13
阅读次数:
0
#!/bin/bash apiName=bz_return_order api_csv_path_home=/home/vmuser/linbo/test_upload/data_file evnArr=(prod test) declare -A prodFileAndSizeMap declar ...
分类:
其他好文 时间:
2021-01-01 12:39:09
阅读次数:
0
正则模式 先说说什么是正则模式。 见名知义,"正则模式"肯定与"正则表达式"有关,所以,如果想要使用这种模式,则必须先学会在Linux中使用正则表达式,如果你对正则表达式还不是特别熟悉,可以参考博客中的系列文章:在Linux中使用正则表达式 前文中提到过,"模式"可以理解为"条件",当不指定模式时, ...
分类:
其他好文 时间:
2021-01-01 12:29:26
阅读次数:
0
一、数据库状态查询 1.1、查看进程详情 show processlist; show full processlist; 1.2、数据库连接数 当前连接数 show status like '%threads_%'; 最大连接数 show variables like '%max_connecti ...
分类:
数据库 时间:
2021-01-01 12:06:29
阅读次数:
0
public class RandomAccessDemo6 { public static void main(String[] args) throws IOException { RandomAccessFile src = new RandomAccessFile("src.AVI", "r ...
分类:
编程语言 时间:
2020-12-31 12:33:36
阅读次数:
0
归并排序 利用递归实现分治。每次排序时间复杂度是O(N),一共需要 LogN 次。 #include <stdlib.h> #include <time.h> #define size 100 static int n[size]; static int t[size]; void msort(in ...
分类:
编程语言 时间:
2020-12-31 12:14:15
阅读次数:
0
code # 文件db的内容为:{"count":5} # 注意一定要用双引号,不然json无法识别 # 并发运行,效率高,但竞争写同一文件,数据写入错乱 from multiprocessing import Process,Lock import time,json,random def sea ...
分类:
系统相关 时间:
2020-12-31 12:02:45
阅读次数:
0
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Docum ...
分类:
其他好文 时间:
2020-12-31 11:49:47
阅读次数:
0