摘要:
前提需要安装python的pandas包 阅读全文
摘要:
脚本对日志文件进行切割 阅读全文
摘要:
nginx 像网卡那样可以 start stop restart staus 方便管理 阅读全文
摘要:
nginx编译安装: 阅读全文
摘要:
[root@nginx ~]# #默认启动方式 [root@nginx ~]# which nginx /sbin/nginx [root@nginx ~]# nginx [root@nginx ~]# #另行指定配置文件 [root@nginx ~]# nginx -c /tmp/nginx.conf [root@nginx ~]# #另行指定配置文件 [root@nginx ~]# ngi... 阅读全文
摘要:
''' AOP之类装饰器 ''' #标准 def standard(class_): class_.standard=class_ print(class_.name) return class_ #非标准 def nonstandard(based_on): def concrete_decorator(class_): class_.sta... 阅读全文