提升linux下tcp服务器并发连接数限制 http://blog.chinaunix.net/uid-24907956-id-3428052.html 1、查看Web服务器(Nginx)的并发请求数及其TCP连接状态:netstat -n | awk '/^tcp/ {++state[$NF]} ...
分类:
其他好文 时间:
2017-09-21 13:31:48
阅读次数:
298
最近学习数据结构和算法学得有点累了(貌似也没那么累...)...找了本网络编程翻了翻当做打一个小基础吧,打算一边继续学习数据结构一边也看看网络编程相关的... 简单的第一次尝试,就大致梳理一下看书+自己理解的东西。 1.首先是对Winsock的一点介绍:Winsock是一种标准的API(应用程序编程 ...
分类:
编程语言 时间:
2017-09-16 01:12:58
阅读次数:
239
主要介绍一下php的几种缓存 第一种也是常用的: 一、Memcache简介: Memcache是danga.com的一个项目,最早是为 LiveJournal 服务的, 目前全世界不少人使用这个缓存项目来构建自己大负载的网站, 来分担数据库的压力。它可以应对任意多个连接,使用非阻塞的网络IO。 由于 ...
分类:
系统相关 时间:
2017-09-07 10:11:52
阅读次数:
299
socketserver SocketServer服务端内部使用 IO多路复用 以及 “多线程” 和 “多进程” ,从而实现并发处理多个客户端请求。即:每个客户端请求连接到服务器时,Socket服务端都会在服务器是创建一个“线程”或者“进 程” 专门负责处理当前客户端的所有请求。 一、sockets ...
分类:
编程语言 时间:
2017-09-06 11:43:01
阅读次数:
253
1. Traceback (most recent call last): File "/usr/bin/airflow", line 28, in args.func(args) File "/usr/lib/python2.7/site-packages/airflow/bin/cli.py",... ...
分类:
其他好文 时间:
2017-08-31 00:59:33
阅读次数:
244
核心数字类型:数字:int,long,float,complex,bool字符:str,unicode列表:list字典:dict元组:tuple文件:file其他类型:集合(set),frozenset,类型,None其他文件类工具:pipes,fifos,sockets.类型转换:str(),repr()或format():将非字符型数据转换成字符;int():转换..
分类:
编程语言 时间:
2017-08-28 20:04:18
阅读次数:
246
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Threading;using System.Net.Sockets;using System.Net; na ...
分类:
其他好文 时间:
2017-08-23 19:13:38
阅读次数:
154
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Net; using System.Net.Sockets; using System.Net.Net... ...
分类:
其他好文 时间:
2017-08-23 19:09:05
阅读次数:
148
1 #!usr/bin/env python 2 #-*-coding:utf-8-*- 3 # Author calmyan 4 import socket,os,json,getpass,hashlib 5 import os ,sys,optparse 6 7 STATUS_CODE={ 8 ...
分类:
编程语言 时间:
2017-08-23 15:31:42
阅读次数:
116
1、修改php.ini,打开extension=php_sockets.dll 2、服务端程序SocketServer.php 3、客户端程序SocketClient.php 4、测试 运行服务端程序:C:\wamp\bin\php\php5.4.16\php.exe C:\wamp\www\Soc ...
分类:
Web程序 时间:
2017-08-20 10:24:26
阅读次数:
190