php安装说明书 需要安装包可以拿U盘找技术--小豪拷贝。 一、安装对象和安装顺序 0 vcredist_x64.exe(Microsoft Visual C++ 运行时文件和操作系统组件) 1 Wampserver64 (Windows Apache Mysql PHP集成安装环境,即在windo ...
分类:
Web程序 时间:
2017-06-30 01:06:02
阅读次数:
328
// 超时版的fetch _fetch(fetch, timeout) { return Promise.race([ fetch, new Promise(function (resolve, reject) { setTimeout(... ...
分类:
其他好文 时间:
2017-06-29 22:12:04
阅读次数:
263
setTimeout和setInterval ...
分类:
其他好文 时间:
2017-06-29 20:33:37
阅读次数:
120
SHOW VARIABLES LIKE "max_connections"; SHOW VARIABLES LIKE "wait_timeout"; SET GLOBAL max_connections = 5000; SELECT @@MAX_CONNECTIONS AS 'Max Connect ...
分类:
数据库 时间:
2017-06-29 19:19:58
阅读次数:
202
首先列出HttpHelper类 /// <summary> /// Http操作类 /// </summary> public class HttpHelper { private static log4net.ILog mLog = log4net.LogManager.GetLogger("Ht ...
分类:
Web程序 时间:
2017-06-29 14:02:33
阅读次数:
168
报错 :121 信号灯超时时间已到 (error sem timeout) 现象和 http://bbs.csdn.net/topics/370175898 描述一致 现象:GetQueuedCompletionStatus 返回后,GetLastError = 121 (信号灯超时时间已到),出现 ...
分类:
其他好文 时间:
2017-06-28 19:03:40
阅读次数:
1186
1.nginx的配置如下: location ^~ /images/ { set $memcached_key "$uri"; #用URI作为key去memcached中去读取内容 memcached_pass 127.0.0.1:11211; memcached_connect_timeout 5 ...
分类:
系统相关 时间:
2017-06-28 13:18:48
阅读次数:
181
项目中有用到定时器定时刷新页面的数据,在网上查看了一些资料,整理了一下,备忘。 $timeout 用法如下:$timeout(fn,[delay],[invokeApply]); fn:一个将被延迟执行的函数。 delay:延迟的时间(毫秒)。 invokeApply:如果设置为false,则跳过脏 ...
分类:
其他好文 时间:
2017-06-27 20:03:13
阅读次数:
2076
Server Tomcat v8.0 Server at localhost was unable to start within 45 seconds. If the server requires more time, try increasing the timeout in the serv ...
分类:
其他好文 时间:
2017-06-27 18:49:36
阅读次数:
254
2、在web.config中配置Session Web.config文件中的Session配置信息: 复制代码 代码如下: <sessionState mode="Off|InProc|StateServer|SQLServer" cookieless="true|false" timeout="n ...
分类:
Web程序 时间:
2017-06-27 17:01:44
阅读次数:
188