hopeless-dream

导航

2021年7月5日 #

docker网络类型

摘要: docker的网络模式 docker有六种网络模式: bridge 桥接,使用自定义的IP(默认) host(open) 与宿主机共享网络,开放模式 none(close) 不分配网络,关闭模式 Container(join) 与其他容器共享网络,联合模式 overlay 主要用于不同宿主机上的do 阅读全文

posted @ 2021-07-05 17:27 hopeless-dream 阅读(247) 评论(0) 推荐(0) 编辑

Python程序超时处理

摘要: 使用timeout_decorator模块进行处理,该模块提供了装饰器 [root@web1 ~]# pip install timeout_decorator [root@web1 ~]# vim a.py #!/usr/bin/env python3 #-*- coding: utf-8 -*- 阅读全文

posted @ 2021-07-05 12:20 hopeless-dream 阅读(779) 评论(0) 推荐(0) 编辑

Tomcat优化-------web.xml、server.xml

摘要: server.xml executor <!--连接池配置--> <Executor name="selfThreadPool" --线程池名,根据具体业务定义,需要在Connector中引用才可以生效 namePrefix="catalina-exec-" --线程名称前缀,根据具体业务定义 na 阅读全文

posted @ 2021-07-05 11:30 hopeless-dream 阅读(219) 评论(0) 推荐(0) 编辑

tomcat中web.xml的作用

摘要: 官方解释 This document defines default values for *all* web applications loaded into this instance of Tomcat. As each application is deployed, this file i 阅读全文

posted @ 2021-07-05 11:29 hopeless-dream 阅读(574) 评论(0) 推荐(0) 编辑