场景:前几天在项目开发时,有个bug经常出现,今天花了一整天,终于把它解决了。记录一下解决流程。 解决方法: 主要报错的地方在添加的部分: 1 foreach (var requestProperty in request.Properties) 2 { 3 UnitWork.Add(new Rel ...
分类:
其他好文 时间:
2021-04-28 11:47:37
阅读次数:
0
众所周知,Redis是一个单线程架构的NoSQL数据库,但是是单线程模型的Redis为什么性能如此之高?这就是我们接下来要探究学习的内容。 1、Redis的单线程架构 1.1、Redis单线程简介 首先要明白,Redis的单线程指的是执行命令时的单线程。 Redis客户端与服务端的模型可以简化成下图 ...
分类:
编程语言 时间:
2021-04-27 14:52:59
阅读次数:
0
问题一:atxserver2-android-provider中平台无法显示Android设备 [D 210424 18:27:37 device:212] [5230d487] tcpproxy.js start *:20000 -> 20002[E 210424 18:27:37 main:26 ...
分类:
其他好文 时间:
2021-04-26 13:17:09
阅读次数:
0
AD 对指定名称的铺铜设置规则 在 Clearance 规则中用 InNamedPolygon('P1_BottomLayer') 在 Polygon Connect Style 中用 IsNamedPolygon('P1_BottomLayer') 两个不一样,并且也不能交换使用,否则不能生效,不 ...
分类:
其他好文 时间:
2021-04-24 13:12:40
阅读次数:
0
今天决定把Debian 10.1自带的4.19内核升级到5.2.14。 需要的工具automake、make、g++(包含gcc)、bison、flex、libelf-dev、libssl-dev、bc。 懒人命令: sudo apt install -y automake make g++ bis ...
分类:
其他好文 时间:
2021-04-23 11:58:49
阅读次数:
0
-Django项目文件夹 --project文件夹 settings.py 配置文件 urls.py 路由与视图函数对应关系 (路由层) wsgi.py wsgiref模块(不考虑) --manage.py Django的入口文件 --db.splite3 django 自带的sqlite3数据库( ...
分类:
其他好文 时间:
2021-04-21 11:49:05
阅读次数:
0
作者:HelloGitHub-小夏(首发于 HelloGitHub 公众号) 作为一个靠代码作为“生计”的开发者,bug 写的好不好,编辑器真的很重要!那么 Visual Studio Code 这个大名你肯定不会陌生。作为一个老厉害的编辑器,它的过人之处简单讲讲来说有这么几点: 首先,它的设计者是 ...
分类:
其他好文 时间:
2021-04-21 11:45:33
阅读次数:
0
实现了提示控件(picture1)随着鼠标而移动,但点击时仍会显示(是一个BUG) 需要绑定事件到 form、panel1、picture1、等控件 private void panel1_MouseMove(object sender, MouseEventArgs e) { //timer1.S ...
You are given 2 arrays a and b, both of size n. You can swap two elements in b at most once (or leave it as it is), and you are required to minimize t ...
分类:
移动开发 时间:
2021-04-20 15:01:50
阅读次数:
0
滑动窗口 219. 存在重复元素 II 给定一个整数数组和一个整数 k,判断数组中是否存在两个不同的索引 i 和 j,使得 nums [i] = nums [j],并且 i 和 j 的差的 绝对值 至多为 k。 // 滑动窗口做法 class Solution { public boolean co ...
分类:
其他好文 时间:
2021-04-19 15:40:01
阅读次数:
0