1.jmeter 与tcp 建立连接 先启动一个tcp服务端 # -*- coding:utf-8 -*- #@Time : 2020/5/17 20:18 #@Author: 张君 #@File : server_test.py # encoding=utf-8 import socketserv ...
分类:
其他好文 时间:
2020-05-17 21:46:26
阅读次数:
77
[TOC] RPC 在介绍RPC之前,我们有必要先介绍一下IPC 进程间通信(IPC,Inter Process Communication),指至少两个进程或线程间传送数据或信号的一些技术或方法。进程是计算机系统分配资源的最小单位。每个进程都有自己的一部分独立的系统资源,彼此是隔离的。为了能使不同 ...
分类:
系统相关 时间:
2020-05-14 13:07:08
阅读次数:
112
<%@page import="com.gd.entity.Msg"%> <%@page import="com.gd.dao.MsgDao"%> <%@page import="com.gd.entity.Users"%> <%@ page language="java" import="java ...
分类:
Web程序 时间:
2020-05-13 17:19:28
阅读次数:
76
首先react需要安装nodejs然后安装reacthttps://www.runoob.com/react/react-install.htmlTypeError [ERR_INVALID_ARG_TYPE]: The "path" argument must be of type string. ...
分类:
Web程序 时间:
2020-05-12 14:06:12
阅读次数:
192
<?php public function task() { $list = M('SysTask')->where(['status' => ['neq',3]])->select(); // 通过文件锁住操作执行完再执行下一个 $fp = fopen("lock.txt", "w+"); if ...
分类:
其他好文 时间:
2020-05-11 01:28:41
阅读次数:
77
function PingServer(HostIP: string;LinkTimeOut: integer): boolean; var RRemoteC: TIdIcmpClient; AReplyStatus: TReplyStatus; begin try result := true; ...
#!/usr/bin/env python # -*- coding:utf-8 -*- # Author: xuexueuxe import socket import select import os,json,time,queue def get(r,cmd): filename = cmd. ...
分类:
其他好文 时间:
2020-05-09 18:38:10
阅读次数:
61
管道可以看作受驱动器pipeDrv管理的虚拟I/O设备,使用基本的I/O系统接口可以读、写和操作管道,这些函数包括read、write、open、close、ioctl和select等。与pipe密切相关的其它API还有:(1)pipeDrv():初始化pipeDrv,函数原型:STATUSpipeDrv(void);(2)pipeDevCreate():创建pipe,函数原型:STATUSpip
分类:
其他好文 时间:
2020-05-09 10:41:37
阅读次数:
90
class staticmethod(object): """ staticmethod(function) -> method Convert a function to be a static method. A static method does not receive an implici ...
分类:
编程语言 时间:
2020-05-02 22:32:25
阅读次数:
120
netstat -n | awk '/^tcp/ {++S[$NF]} END {for(a in S) print a, S[a]}' TIME_WAIT 8947 等待足够的时间以确保远程TCP接收到连接中断请求的确认FIN_WAIT1 15 等待远程TCP连接中断请求,或先前的连接中断请求的确 ...
分类:
其他好文 时间:
2020-04-28 12:44:56
阅读次数:
72