1,查找nginx配置文件 一般在conf里面 2,nginx 配置类型 1,全局库 worker_processes nginx处理并发的数量,数量越大,并发越多 worker_processes auto auto代表根据需求自动调整 2,events快 主要是nginx服务器与网络的连接 wo ...
分类:
其他好文 时间:
2020-03-13 19:03:28
阅读次数:
43
worker_processes 1; events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeo ...
分类:
其他好文 时间:
2020-03-06 23:30:21
阅读次数:
79
Nginx配置文件结构 ... #全局块 events { #events块 ... } http #http块 { ... #http全局块 server #server块 { ... #server全局块 location [PATTERN] #location块 { ... } locatio ...
分类:
其他好文 时间:
2020-03-05 22:15:03
阅读次数:
110
# 查看当前binlog状态 show master status\G; # mysql中查看指定binlog信息 show binlog events in 'mysql-bin.000010'; # 查询指定时间段内/位置的删除语句 mysqlbinlog --no-defaults --sta ...
分类:
数据库 时间:
2020-03-04 12:59:09
阅读次数:
73
我在“python3开发桌面软件之程序主体”一文中已经分享了919网监助手1.0程序的主体源代码(即events.py中的代码),后用迭代器、生成器表达式等对代码进行优化,使程序运行更快、更稳定。优化后的代码如下: #coding:utf-8import wximport configparseri ...
分类:
其他好文 时间:
2020-03-02 14:57:01
阅读次数:
58
原文链接:https://blog.csdn.net/aiolos1111/article/details/52047380 简单以jQuery的 on() 方法为例说明: API: .on( events [, selector ] [, data ][, handler]) 如果on()方法的s ...
分类:
Web程序 时间:
2020-02-26 20:56:22
阅读次数:
91
I'm a newbie when it comes to creating new events to components... and I noticed that TDBGrid has a OnCellClick, but sadly it doesnt have an OnCellDbl ...
分类:
数据库 时间:
2020-02-26 01:52:35
阅读次数:
104
本文概述了Genexus16 Upgrade 8的特性(与Genexus16 Upgrade 7相比)以及使用它需要考虑的问题。 已于2020年2月21日发布。 总览 此升级包括.NET Core 3.1的代码生成、生成代码的速度改进和重要的安全更新,以及IDE、Web和移动生成器中的一些功能和更新 ...
分类:
其他好文 时间:
2020-02-25 14:37:41
阅读次数:
72
jQuery是经常使用的一个开源js框架,其中的$.ajax请求中有一个beforeSend方法,用于在向服务器发送请求前执行一些动作。具体可参考jQuery官方文档:http://api.jquery.com/Ajax_Events/ $.ajax({ beforeSend: function() ...
分类:
Web程序 时间:
2020-02-23 22:08:19
阅读次数:
92
背景 自复位开关->modbus DI模块->node-red->modbus DO模块->继电器->设备(灯具或插座) 参照003篇,已经成功接入两个模块。 思路 在nr里定义一个变量用来记录设备状态,所有的操控都是直接操作这个变量,然后用变量去控制相应的设备。这样,无论控制源是开关、语音助手、传 ...
分类:
数据库 时间:
2020-02-23 16:42:04
阅读次数:
165