摘要: java.lang.ClassNotFoundException: 环境配置错误: .;%JAVA_HOME%\lib;%JAVA_HOME%\lib\tools.jar 报错: java.util.ConcurrentModificationException 不能在遍历这个arrayList的时 阅读全文
posted @ 2021-09-08 18:52 Ghose 阅读(29) 评论(0) 推荐(0)
摘要: 转自:https://www.zhihu.com/question/24761255 必须技能10条:01.Java高级(虚拟机、并发)02.Linux 基本操作03.Hadoop(此处为侠义概念单指HDFS+MapReduce+Yarn )04.HBase(JavaAPI操作+Phoenix )0 阅读全文
posted @ 2021-08-24 23:13 Ghose 阅读(187) 评论(0) 推荐(0)
摘要: import sysimport timefrom selenium import webdriverdef driver_get(url): chrome_options = webdriver.ChromeOptions() chrome_options.add_ecperimental_opt 阅读全文
posted @ 2021-08-20 23:43 Ghose 阅读(34) 评论(0) 推荐(0)
摘要: 大表查询? 第一个反应就是建索引,但是显然,这不是面试官想要的答案。 或许面试官会继续问,索引?有哪些索引(B树和B+树的问题) 建议就是把大表分成多个表。 面试官肯定会追问,怎么分? 横向拆分(记录的拆分)和纵向拆分(字段的拆分) 横向拆分 例如把大表的时间段,分开来,2021的和2020的分开。 阅读全文
posted @ 2021-08-17 21:17 Ghose 阅读(426) 评论(0) 推荐(0)
摘要: package main import ( "fmt" "io/ioutil" "net/http" "github.com/gin-gonic/gin" ) func get_baidu(url string) string{ client := &http.Client{} req, _ := 阅读全文
posted @ 2021-08-15 22:18 Ghose 阅读(67) 评论(0) 推荐(0)
摘要: TCP链接的三次握手四次挥手。 三次握手。 client向server发出请求,第一次握手,server知道client具备发送能力 server回复client,表示收到,并且准备好自己的工作,第二次握手。意义是client知道具备发送能力和接收能力。这个时候server还在蒙圈,自己发送能力行不 阅读全文
posted @ 2021-08-15 22:13 Ghose 阅读(35) 评论(0) 推荐(0)
摘要: 作为coding记录 阅读全文
posted @ 2021-08-15 21:56 Ghose 阅读(12) 评论(0) 推荐(0)