上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 186 下一页
摘要: https://mp.weixin.qq.com/s/fy84edOix5tGgcvdFkJi2w 阅读全文
posted @ 2020-07-20 20:39 papering 阅读(146) 评论(0) 推荐(0) 编辑
摘要: django/query.py at master · django/django https://github.com/django/django/blob/master/django/db/models/query.py def get_or_create(self, defaults=None 阅读全文
posted @ 2020-07-17 23:48 papering 阅读(370) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/2obpN57D8hyorCMnIu_YAg 死锁案例八 文 | 杨一 on 运维 转 | 来源:公众号yangyidba 一、前言 死锁其实是一个很有意思也很有挑战的技术问题,大概每个 DBA 和部分开发朋友都会在工作过程中遇见。关于死锁我会持 阅读全文
posted @ 2020-07-17 23:12 papering 阅读(989) 评论(0) 推荐(0) 编辑
摘要: 死锁产生必要条件 1、互斥条件 2、请求和保持条件 3、不可抢占条件 4、循环等待条件 《计算机操作系统》 1 进程对所分配的资源进行排他性使用,即在一段时间内,某资源只能被一个进程占用。 2 进程已经保持了至少一个资源,但又提出了新的资源请求,而该资源已被其他进程占有,此时请求进程被阻塞,但对自己 阅读全文
posted @ 2020-07-16 23:18 papering 阅读(225) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/A0T6ySub0DfQiXJAbWm2Qg jsf协议是基于tcp的而且对数据进行了序列化、加密等操作,直接截获的方式很难实现。最后决定注入自己实现的com.jd.*.*.*.QService代理类到Spring容器中并且id设置为"qa*Se 阅读全文
posted @ 2020-07-16 12:02 papering 阅读(177) 评论(0) 推荐(0) 编辑
摘要: certbot (base) a@test:~# certbot --help - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - certbot [SUBCOMMAND] [options] 阅读全文
posted @ 2020-07-15 20:53 papering 阅读(583) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/q5rx07ayJFiGNUBgrtiUdQ 阿里妹导读:关于代码的健壮性,其重要性不言而喻。那么如何才能写出健壮的代码?阿里文娱技术专家长统将从防御式编程、如何正确使用异常和 DRY 原则等三个方面,并结合代码实例,分享自己的看法心得,希望对同 阅读全文
posted @ 2020-07-15 12:17 papering 阅读(290) 评论(0) 推荐(0) 编辑
摘要: UT /SIT/ UAT - 云+社区 - 腾讯云 https://cloud.tencent.com/developer/article/1541268 我们公司只有测试环境--准生产环境--生产环境。 UT是单元测试,Unit Test: 单元测试任务包括:1 模块接口测试;2 模块局部数据结构 阅读全文
posted @ 2020-07-15 12:14 papering 阅读(1240) 评论(0) 推荐(0) 编辑
摘要: 动态推进 阅读全文
posted @ 2020-07-14 12:28 papering 阅读(141) 评论(0) 推荐(0) 编辑
摘要: 给定一个整数数组 nums,求出数组从索引 i 到 j (i ≤ j) 范围内元素的总和,包含 i, j 两点。 示例: 给定 nums = [-2, 0, 3, -5, 2, -1],求和函数为 sumRange() sumRange(0, 2) -> 1sumRange(2, 5) -> -1s 阅读全文
posted @ 2020-07-14 00:27 papering 阅读(186) 评论(0) 推荐(0) 编辑
摘要: HTTP_429_TOO_MANY_REQUESTS 阅读全文
posted @ 2020-07-14 00:10 papering 阅读(476) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/VRQ_12tzy3gRYD091cI7Ew 阅读全文
posted @ 2020-07-10 08:43 papering 阅读(144) 评论(0) 推荐(0) 编辑
摘要: 微服务失败的 11 个原因 https://mp.weixin.qq.com/s/NPNmEObOq9ITTxT79YCo8g 微服务失败的 11 个原因 Tina InfoQ 2020-03-2 作者 | Shekhar Gulati 策划 | Tina 微服务“很香”,它有许多优势,比如更快的开 阅读全文
posted @ 2020-07-10 08:37 papering 阅读(680) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-07-09 23:01 papering 阅读(124) 评论(0) 推荐(0) 编辑
摘要: https://www.cnblogs.com/apanly/p/8784096.html 最终,我选择了 GraphQL 作为企业 API 网关 蓝 / 绿部署(Blue/Green) 金丝雀发布(Canary Release) 功能标记(Feature Flagging) https://mp. 阅读全文
posted @ 2020-07-09 22:57 papering 阅读(779) 评论(0) 推荐(0) 编辑
摘要: t = os.path.dirname(os.path.dirname((os.path.dirname(os.path.abspath(__file__)))))os.path.sys.path.append(t)模块寻找路径 阅读全文
posted @ 2020-07-09 12:21 papering 阅读(202) 评论(0) 推荐(0) 编辑
摘要: server { if ($host = a.t.com) { return 301 https://$host$request_uri; } # managed by Certbot server_name a.t.com; listen 80; return 404; # managed by 阅读全文
posted @ 2020-07-08 23:46 papering 阅读(178) 评论(0) 推荐(0) 编辑
摘要: 房产经纪人页面错误信息采集方案 https://mp.weixin.qq.com/s/tznlHs3XRwJFQtGiCwp15w function captureScreen() { var targetDom = document.querySelector("body"); html2canv 阅读全文
posted @ 2020-07-08 23:13 papering 阅读(175) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/347dKRlez0_KJKGOkTI0AQ 阅读全文
posted @ 2020-07-07 23:01 papering 阅读(253) 评论(0) 推荐(0) 编辑
摘要: shell命令分隔符 二叉树结构的命令行树 I ;& 阅读全文
posted @ 2020-07-07 01:11 papering 阅读(295) 评论(0) 推荐(0) 编辑
摘要: https://docs.celeryproject.org/en/stable/userguide/configuration.html?highlight=control_exchange#new-lowercase-settings New lowercase settings Version 阅读全文
posted @ 2020-07-01 23:59 papering 阅读(866) 评论(1) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/qQj5bxspzb2VocFRd86Hyw 阅读全文
posted @ 2020-06-30 23:52 papering 阅读(101) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/YdCRTUrpd-vz8JO_TxTrMw 针对已有的业务逻辑,我们线上优化前采用的是比较便于理解的方法,来处理这块并发,把有依赖的信息列表和无依赖的信息列表区分开,创建不同的线程去执行。 阅读全文
posted @ 2020-06-30 23:41 papering 阅读(156) 评论(0) 推荐(0) 编辑
摘要: https://mp.weixin.qq.com/s/Og2TkGrZR490h9-KO23lmw 背景 apk瘦身和启动时间优化是移动端开发性能优化中经常被提到的两个问题。apk瘦身的常规做法有,so文件大小优化,资源文件大小优化,代码量大小优化等。启动优化的常规做法有,启动页主题背景设置成闪屏页 阅读全文
posted @ 2020-06-30 23:34 papering 阅读(4024) 评论(0) 推荐(0) 编辑
摘要: 如何保证接口测试的覆盖率? - 知乎 https://www.zhihu.com/question/39703248 阅读全文
posted @ 2020-06-30 23:19 papering 阅读(610) 评论(0) 推荐(0) 编辑
摘要: 1 阅读全文
posted @ 2020-06-30 19:46 papering 阅读(125) 评论(0) 推荐(0) 编辑
摘要: How Load Balancing Policies Work https://docs.cloud.oracle.com/en-us/iaas/Content/Balance/Reference/lbpolicies.htm How Load Balancing Policies Work Af 阅读全文
posted @ 2020-06-30 12:20 papering 阅读(179) 评论(0) 推荐(0) 编辑
摘要: Nignx 连接tomcat时会话粘性问题分析_changyanmanman的专栏-CSDN博客_后端tomcat导致 前端elb中断 https://blog.csdn.net/cymm_liu/article/details/49099551 在多台后台服务器的环境下,我们为了确保一个客户只和一 阅读全文
posted @ 2020-06-30 12:17 papering 阅读(2142) 评论(0) 推荐(0) 编辑
摘要: 有状态(Stateful)应用的容器化 - 云+社区 - 腾讯云 https://cloud.tencent.com/developer/article/1020178 阅读全文
posted @ 2020-06-30 12:11 papering 阅读(302) 评论(0) 推荐(0) 编辑
摘要: 解决的问题:将请求分发至同一主机的不同端口(不考虑容器)支持:httpsupstream api { server 127.0.0.1:5000 weight=1; server 127.0.0.1:5001 weight=1; server 127.0.0.1:5002 weight=1;}ser 阅读全文
posted @ 2020-06-30 12:09 papering 阅读(302) 评论(0) 推荐(0) 编辑
摘要: NGINX Docs | HTTP Load Balancing https://docs.nginx.com/nginx/admin-guide/load-balancer/http-load-balancer/ cookie实现客户端与后端服务器的会话保持, 在一定条件下可以保证同一个客户端访问 阅读全文
posted @ 2020-06-30 12:08 papering 阅读(364) 评论(0) 推荐(0) 编辑
摘要: 回归测试_百度百科https://baike.baidu.com/item/%E5%9B%9E%E5%BD%92%E6%B5%8B%E8%AF%95 阅读全文
posted @ 2020-06-29 00:04 papering 阅读(4480) 评论(0) 推荐(0) 编辑
摘要: a 阅读全文
posted @ 2020-06-28 13:01 papering 阅读(216) 评论(0) 推荐(0) 编辑
摘要: 如何在Redis中实现事务 - 微店技术团队 - SegmentFault 思否 https://segmentfault.com/a/1190000007429197 阅读全文
posted @ 2020-06-27 23:52 papering 阅读(339) 评论(0) 推荐(0) 编辑
摘要: https://github.com/go-proverbs/go-proverbs.github.io Go Proverbs Simple, Poetic, Pithy Don't communicate by sharing memory, share memory by communicat 阅读全文
posted @ 2020-06-27 23:49 papering 阅读(256) 评论(0) 推荐(0) 编辑
摘要: Infrastructure as Code 行为驱动开发指南 https://www.ibm.com/developerworks/cn/devops/d-bbd-guide-iac/index.html Jenkins 配置即代码 https://www.jenkins.io/zh/projec 阅读全文
posted @ 2020-06-18 22:36 papering 阅读(228) 评论(0) 推荐(0) 编辑
摘要: JMeter之Ramp-up Period(in seconds)说明 Apache JMeter - User's Manual: Elements of a Test Plan https://jmeter.apache.org/usermanual/test_plan.html Thread 阅读全文
posted @ 2020-06-12 18:26 papering 阅读(404) 评论(0) 推荐(0) 编辑
摘要: How to Update Node.js to Latest Version (Linux, Ubuntu, OSX, Others) - HostingAdvice.com https://www.hostingadvice.com/how-to/update-node-js-latest-ve 阅读全文
posted @ 2020-06-12 12:29 papering 阅读(196) 评论(0) 推荐(0) 编辑
摘要: # Functions are First-Class Citizens in Python 一等公民https://cn.bing.com/search?form=MOZSBR&pc=MOZI&q=python++function++First+class+citizensPython札记8:什么 阅读全文
posted @ 2020-06-12 01:21 papering 阅读(142) 评论(0) 推荐(0) 编辑
摘要: YAMLLoadWarning: calling yaml.load() without Loader=... is deprecated, as the default Loader is unsafe. Please read https://msg.pyyaml.org/load for fu 阅读全文
posted @ 2020-06-12 01:08 papering 阅读(643) 评论(0) 推荐(0) 编辑
上一页 1 ··· 58 59 60 61 62 63 64 65 66 ··· 186 下一页