上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页
摘要: git status命令可以列出当前目录所有还没有被git管理的文件和被git管理且被修改但还未提交(git commit)的文件.。 比如; git status # On branch master # Changes to be committed: # (use "git reset HEA 阅读全文
posted @ 2016-12-30 13:54 hdu胡恩超 阅读(446) 评论(0) 推荐(0) 编辑
摘要: Can someone explain how to use the request.js pool hash? The github notes say this about pools: pool - A hash object containing the agents for these r 阅读全文
posted @ 2016-12-30 10:17 hdu胡恩超 阅读(406) 评论(0) 推荐(0) 编辑
摘要: Nagle算法是以他的发明人John Nagle的名字命名的,它用于自动连接许多的小缓冲器消息;这一过程(称为nagling)通过减少必须发送包的个数来增加网络软件系统的效率。Nagle算法于1984年定义为福特航空和通信公司IP/TCP拥塞控制方法,这是福特经营的最早的专用TCP/IP 网络减少拥 阅读全文
posted @ 2016-12-29 21:55 hdu胡恩超 阅读(2562) 评论(0) 推荐(0) 编辑
摘要: 整个流程是 1 :request的 header里加上: 2: 服务器监听 ‘Upgrade’,然后返回: 3:然后就可以通过socket相互消息了。记住socket.end一旦执行,就会断开这次的tcp链接了。 阅读全文
posted @ 2016-12-29 18:58 hdu胡恩超 阅读(688) 评论(0) 推荐(0) 编辑
摘要: You just need to call socket.write with the appropriate HTTP syntax as plain text along these lines (from wikipedia): Use \r\n line separators. After 阅读全文
posted @ 2016-12-29 16:48 hdu胡恩超 阅读(159) 评论(0) 推荐(0) 编辑
摘要: HTTP Upgrade is used to indicate a preference or requirement to switch to a different version of HTTP or to another protocol, if possible: The Upgrade 阅读全文
posted @ 2016-12-29 16:46 hdu胡恩超 阅读(511) 评论(0) 推荐(0) 编辑
摘要: 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://z00w00.blog.51cto.com/515114/1031287 套用古龙武侠小说套路来说,代理服务技术是一门很古老的技术,是在互联网早期出现就使用的技术。一般实现代理技术的 阅读全文
posted @ 2016-12-28 20:05 hdu胡恩超 阅读(165) 评论(0) 推荐(0) 编辑
摘要: JS 引用相关题目 以下代码输出什么? 为什么? 1 var a = {n:1}; 2 var b = a; 3 a = {n:2}; 4 a.x = a ; 5 console.log(a.x); 6 console.log(b.x); 1 var a = {n:1}; 2 var b = a; 阅读全文
posted @ 2016-12-28 15:38 hdu胡恩超 阅读(810) 评论(0) 推荐(0) 编辑
摘要: 对于一个套接字的读写(read/write)操作默认是阻塞的,如果当前套接字还不可读/写,那么这个操作会一直阻塞下去,这就叫套接字超时; 这样对于一个需要高性能的服务器来说,是不能接受的。所以,可以在进行读写操作的时候可以指定超时值,这样就读写操作就不至于一直阻塞下去。 在涉及套接字的I/O操作上设 阅读全文
posted @ 2016-12-27 20:42 hdu胡恩超 阅读(896) 评论(0) 推荐(0) 编辑
摘要: 简介 状态机制是iptables中特殊的一部分,其实它不应该叫状态机制,因为它只是一种连接跟踪机制。但 是,很多人都认可状态机制这个名字。文中我也或多或或少地用这个名字来表示和连接跟踪相同的意思。这 不应该引起什么混乱的。连接跟踪可以让Netfilter知道某个特定连接的状态。运行连接跟踪的防火墙称 阅读全文
posted @ 2016-12-27 14:31 hdu胡恩超 阅读(5877) 评论(0) 推荐(1) 编辑
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 25 下一页