上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 186 下一页
摘要: 小结: 1) 数据库存上salt和hash,每当用户注册,随机生成salt,hash = md5(password + salt) 登录的时候验证md5(input + salt)和hash是否相等即可 2) 首先保障数据很难被拖库。 即使数据被拖库,攻击者也无法从中破解出用户的密码。 即使数据被拖 阅读全文
posted @ 2020-05-28 21:42 papering 阅读(1615) 评论(0) 推荐(0) 编辑
摘要: django.views.debug.get_default_exception_reporter_filter @functools.lru_cache()def get_default_exception_reporter_filter(): # Instantiate the default 阅读全文
posted @ 2020-05-28 12:51 papering 阅读(288) 评论(0) 推荐(0) 编辑
摘要: django.utils.log.AdminEmailHandler django.views.debug.ExceptionReporter.get_traceback_text HIDDEN_SETTINGS = re.compile('API|TOKEN|KEY|SECRET|PASS|SIG 阅读全文
posted @ 2020-05-28 12:49 papering 阅读(225) 评论(0) 推荐(0) 编辑
摘要: 在WebSocket协议中,数据是通过一系列数据帧来进行传输的。为了避免由于网络中介(例如一些拦截代理)或者一些在第10.3节讨论的安全原因,客户端必须在它发送到服务器的所有帧中添加掩码(Mask)(具体细节见5.3节)。(注意:无论WebSocket协议是否使用了TLS,帧都需要添加掩码)。服务端 阅读全文
posted @ 2020-05-26 12:57 papering 阅读(1072) 评论(0) 推荐(0) 编辑
摘要: https://tools.ietf.org/html/rfc6455#section-4.4 4.4. Supporting Multiple Versions of WebSocket Protocol This section provides some guidance on support 阅读全文
posted @ 2020-05-26 12:55 papering 阅读(225) 评论(0) 推荐(0) 编辑
摘要: https://tools.ietf.org/html/rfc6455#section-4.2.1 Please note that according to [RFC2616], all header field names in both HTTP requests and HTTP respo 阅读全文
posted @ 2020-05-26 12:53 papering 阅读(171) 评论(0) 推荐(0) 编辑
摘要: 结束握手 https://tools.ietf.org/html/rfc6455#section-1.8 1.4. Closing Handshake _This section is non-normative._ The closing handshake is far simpler than 阅读全文
posted @ 2020-05-25 12:47 papering 阅读(160) 评论(0) 推荐(0) 编辑
摘要: https://github.com/django/django/blob/master/django/apps/registry.py 阅读全文
posted @ 2020-05-21 23:34 papering 阅读(150) 评论(0) 推荐(0) 编辑
摘要: MySQL :: MySQL Connector/NET Developer Guide :: 4.3 Managing a Connection Pool in Connector/NET https://dev.mysql.com/doc/connector-net/en/connector-n 阅读全文
posted @ 2020-05-21 15:01 papering 阅读(385) 评论(0) 推荐(0) 编辑
摘要: 实践 'upgrade' token not found in 'Connection' headerproxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection upgrade 阅读全文
posted @ 2020-05-21 12:46 papering 阅读(304) 评论(0) 推荐(0) 编辑
摘要: # Copyright 2001-2017 by Vinay Sajip. All Rights Reserved.## Permission to use, copy, modify, and distribute this software and its# documentation for 阅读全文
posted @ 2020-05-21 12:45 papering 阅读(378) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/wSaJYg-HqnYY4SdLA2Zzaw RPC 框架作为研发体系中重要的一环,承载了几乎所有的服务流量。本文将简单介绍字节跳动自研网络库 netpoll 的设计及实践;以及我们实际遇到的问题和解决思路,希望能为大家提供一些参考。 前言 字节 阅读全文
posted @ 2020-05-19 22:00 papering 阅读(814) 评论(0) 推荐(0) 编辑
摘要: < IP首部 TCP首部 TCP报文段的数据部分 < 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 源端口 目的端口 20字节的固定首部序号 确认号 数据偏移 保留 URG 阅读全文
posted @ 2020-05-16 12:07 papering 阅读(1233) 评论(0) 推荐(0) 编辑
摘要: 表 阅读全文
posted @ 2020-05-16 00:43 papering 阅读(188) 评论(0) 推荐(0) 编辑
摘要: 网易新闻App架构重构实践:DDD正走向流行 https://mp.weixin.qq.com/s/FdwrT_xn3CQqpWoRVBttvQ 小智 InfoQ 2020-05-14 作者 | 小智嘉宾 | 李云鹏当前,大多数移动开发团队选择以 MVP 作为业务层的核心架构模型,在此基础上实现了客 阅读全文
posted @ 2020-05-15 22:47 papering 阅读(597) 评论(0) 推荐(0) 编辑
摘要: 货 | 携程是如何做AB实验分流的 阅读全文
posted @ 2020-05-14 18:17 papering 阅读(282) 评论(0) 推荐(0) 编辑
摘要: Pusher Channels Protocol | Pusher docs https://pusher.com/docs/channels/library_auth_reference/pusher-websockets-protocol 阅读全文
posted @ 2020-05-11 23:21 papering 阅读(189) 评论(0) 推荐(0) 编辑
摘要: 避免重复提交?分布式服务的幂等性设计! 架构文摘 今天 点击蓝色“架构文摘”关注我哟 加个“星标”,每天上午 09:25,干货推送! 来源:https://www.cnblogs.com/QG-whz/p/10372458.html 作者:melonstreet 阅读全文
posted @ 2020-05-11 12:19 papering 阅读(248) 评论(0) 推荐(0) 编辑
摘要: https://wiki.mbalib.com/wiki/前导时间 什么是前导时间 所谓的前导时间(leading time),就是产品从设计,到生产、物流、销售的过程。 BELLWETHER:“前导”英译,“前导”意即“在前面领路的人”。 所以前导可以引申为必要的前期准备,是后面的必要铺垫,而这个 阅读全文
posted @ 2020-05-10 15:06 papering 阅读(3950) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/jmzp44hbwZloX8hjls-V8A ”精益生产“起源于丰田生产方式,它致力于在大量生产中实现多品种和高质量产品的低成本生产,随着在制造业取得巨大成功,精益思想也逐步渗透到了各行各业,其中在软件行业就演化出了很多新的理论,比如精益研发、D 阅读全文
posted @ 2020-05-10 14:50 papering 阅读(318) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、 通过开发软件系统来维护系统的正常运行。 什么?你竟然不知道SRE工程师! - 知乎 https://zhuanlan.zhihu.com/p/380623684 与运维工程师不同的是。SRE工程师不但负责传统运维工程师的工作,他们也负责软件工程师的一些工作——参与某些软件或系统的开发。 阅读全文
posted @ 2020-05-10 12:24 papering 阅读(451) 评论(0) 推荐(0) 编辑
摘要: 函数执行耗时限制 阅读全文
posted @ 2020-05-10 12:07 papering 阅读(244) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/vKJZp5cGUetHokGh2EZUXg mysqlslap --iterations=100 --create-schema='test' --query="query.sql" --number-of-queries=20000 --de 阅读全文
posted @ 2020-05-09 22:01 papering 阅读(426) 评论(0) 推荐(0) 编辑
摘要: 从源码解析Nginx对 Native aio支持_运维_youbingchen的博客-CSDN博客 https://blog.csdn.net/youbingchen/article/details/51767587 阅读全文
posted @ 2020-05-09 01:14 papering 阅读(156) 评论(0) 推荐(0) 编辑
摘要: ``` 47757 2020/05/07 06:36:04 [debug] 19413#19413: *23421 event timer: 11, old: 15581551413, new: 1558155141747758 2020/05/07 06:37:04 [debug] 19413#1 阅读全文
posted @ 2020-05-09 00:50 papering 阅读(2097) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-05-09 00:02 papering 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-05-08 00:59 papering 阅读(427) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-05-08 00:28 papering 阅读(236) 评论(0) 推荐(0) 编辑
摘要: int ping = 11; ZooKeeper Programmer's Guide https://zookeeper.apache.org/doc/r3.1.2/zookeeperProgrammers.html The session is kept alive by requests se 阅读全文
posted @ 2020-05-08 00:13 papering 阅读(241) 评论(0) 推荐(0) 编辑
摘要: 事实上,即使在很小的概率下,客户端 Telnet 使用了相同的端口,从而造成了新连接和旧连接的四元组相同,在现代 Linux 操作系统下,也不会有什么大的问题,原因是现代 Linux 操作系统对此进行了一些优化。 第一种优化是新连接 SYN 告知的初始序列号,一定比 TIME_WAIT 老连接的末序 阅读全文
posted @ 2020-05-06 00:44 papering 阅读(246) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-05-06 00:36 papering 阅读(172) 评论(0) 推荐(0) 编辑
摘要: nginx log 日志等级 阅读全文
posted @ 2020-05-06 00:20 papering 阅读(480) 评论(0) 推荐(0) 编辑
摘要: nginx 并发数问题思考:worker_connections,worker_processes与 max clients-运维者说:从菜鸟到老鸟-51CTO博客 https://blog.51cto.com/liuqunying/1420556 nginx 并发数问题思考:worker_conn 阅读全文
posted @ 2020-05-06 00:02 papering 阅读(523) 评论(0) 推荐(0) 编辑
摘要: Graham Dumpleton: Obligations for calling close() on the iterable returned by a WSGI application. http://blog.dscpl.com.au/2012/10/obligations-for-cal 阅读全文
posted @ 2020-05-05 23:24 papering 阅读(120) 评论(0) 推荐(0) 编辑
摘要: https://tools.ietf.org/html/rfc6455 https://tools.ietf.org/html/rfc6455 7.4.1. Defined Status Codes Endpoints MAY use the following pre-defined status 阅读全文
posted @ 2020-05-05 23:22 papering 阅读(621) 评论(0) 推荐(0) 编辑
摘要: 1006 阅读全文
posted @ 2020-05-05 12:14 papering 阅读(242) 评论(0) 推荐(0) 编辑
摘要: tcp 半关闭 阅读全文
posted @ 2020-05-05 01:20 papering 阅读(172) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-05-05 01:07 papering 阅读(258) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-05-05 00:35 papering 阅读(496) 评论(0) 推荐(0) 编辑
摘要: proc/sys/net/ipv4/下各项的意义 - 孤剑 - 博客园 https://www.cnblogs.com/AloneSword/p/3209653.html 阅读全文
posted @ 2020-05-04 23:51 papering 阅读(699) 评论(0) 推荐(0) 编辑
上一页 1 ··· 60 61 62 63 64 65 66 67 68 ··· 186 下一页