摘要: 容器本身没有价值,有价值的是“容器编排” 阅读全文
posted @ 2020-09-15 17:33 进击的pythoner 阅读(122) 评论(0) 推荐(0)
摘要: 线程是指进程内的一个执行单元, # 进程 进程拥有自己独立的堆和栈,既不共享堆,亦不共享栈,进程由操作系统调度。 # 线程 线程拥有自己独立的栈和共享的堆,共享堆,不共享栈,线程亦由操作系统调度 # 协程和线程 协程避免了无意义的调度,由此可以提高性能;但同时协程也失去了线程使用多CPU的能力 进程 阅读全文
posted @ 2020-09-15 17:25 进击的pythoner 阅读(757) 评论(0) 推荐(0)
摘要: 最近想用curl获取到访问某网站的返回状态码,灵机一想,curl好像可以实现.命令如下: curl -s -w "%{http_code}\n" -o /dev/null www.baidu.com -w 也支持其他的选项,如想知道某网站的解析速度,用如下命令实现:curl -o /dev/null 阅读全文
posted @ 2020-09-15 15:57 进击的pythoner 阅读(1709) 评论(0) 推荐(0)
摘要: As long as you are the owner of the file (or root), you can change the modification time of a file using the touch command: touch filename By default 阅读全文
posted @ 2020-09-15 14:20 进击的pythoner 阅读(559) 评论(0) 推荐(0)