上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页
摘要: 在Socket心跳机制中,心跳包可以由服务器发送给客户端,也可以由客户端发送给服务器,不过比较起来,前者开销可能较大。本文实现的是由客户端给服务器发送心跳包,服务器不必返回应答包,而是通过判断客户在线会话记录中的计数标志值来实现心跳异常的检测,以此决定客户端是否已经断开连接以及删除其在线会话记录。 阅读全文
posted @ 2019-07-03 10:52 cnkker.com 阅读(1410) 评论(0) 推荐(0) 编辑
摘要: 问题: 在使用Word编写文档时,提前拟好的标题编号会突然变成黑框(黑色的方框,黑色的矩形),如下图 解决方案: 1、将光标定位到标题中,紧邻黑框的右侧 2、按键盘左方向键使方框变成黑色 3、按键盘的快捷键 Ctrl+Shift+S,会出来一个对话框“应用样式”。 4、在这个对话框中,单击“重新应用 阅读全文
posted @ 2019-07-03 10:50 cnkker.com 阅读(1249) 评论(0) 推荐(0) 编辑
摘要: TCP和1448 1448字节是实际场景下,单个TCP包的实际运载能力。也就是说,实际场景下,上层调用send(1000KB),下层会把这1000KB封装成多个TCP包进行发送。单个TCP包每次打包1448字节的数据进行发送。详细的TCP在传输情景wireshark截图如图1 图1 每个TCP包在理 阅读全文
posted @ 2019-07-03 10:47 cnkker.com 阅读(1174) 评论(0) 推荐(0) 编辑
摘要: pip install --upgrade psutil 阅读全文
posted @ 2019-07-03 10:45 cnkker.com 阅读(2453) 评论(0) 推荐(0) 编辑
摘要: db.createUser( { user: “admin”, pwd: “xxx”, roles: [ { role: “userAdminAnyDatabase”, db: “admin” } ], mechanisms : [“SCRAM-SHA-1”] } 阅读全文
posted @ 2019-07-03 10:43 cnkker.com 阅读(370) 评论(0) 推荐(0) 编辑
摘要: LINQ学习笔记 Join 与 Group join 阅读全文
posted @ 2019-02-19 09:12 cnkker.com 阅读(971) 评论(0) 推荐(0) 编辑
摘要: 代码片段: 阅读全文
posted @ 2017-10-20 10:46 cnkker.com 阅读(480) 评论(0) 推荐(0) 编辑
摘要: Java threads created from JNI code in a non-java thread have null ContextClassloader unless the creator explicitly sets it. Also in such context Threa 阅读全文
posted @ 2017-10-17 18:07 cnkker.com 阅读(829) 评论(0) 推荐(0) 编辑
摘要: mvn org.apache.maven.plugins:maven-deploy-plugin:2.8.2:deploy-file -Durl=file:///home/me/m2-repo \ -DrepositoryId=some.repo.id \ -Dfile=./path/to/arti 阅读全文
posted @ 2017-10-16 11:42 cnkker.com 阅读(343) 评论(0) 推荐(0) 编辑
摘要: MAVEN部署异常 org.apache.maven.lifecycle.LifecycleExecutionException: Failed to execute goal org.apache.maven.plugins:maven-deploy-plugin:2.7:deploy-file 阅读全文
posted @ 2017-10-16 11:18 cnkker.com 阅读(5696) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 12 下一页