摘要: https://www.ulduzsoft.com/2014/01/practical-difference-between-epoll-and-windows-io-completion-ports-iocp/ Introduction This article compares the diff 阅读全文
posted @ 2022-08-30 10:44 dewxin 阅读(230) 评论(0) 推荐(0)
摘要: Houdini Fundamentals – Points, Vertices and Primitives http://www.jerryhat.com/2019/11/09/houdini-fundamentals-points-vertices-and-primitives/ As I’ve 阅读全文
posted @ 2022-08-27 23:13 dewxin 阅读(181) 评论(0) 推荐(0)
摘要: http://www.skywind.me/blog/archives/112 网络游戏同步法则 June 11th, 2005skywindLeave a commentGo to comments 网路的硬件也有限,而人的创造也无限,在公网平均130ms的Latency下,是不存在“完全的”的同 阅读全文
posted @ 2022-08-16 21:47 dewxin 阅读(154) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/dragon2012/p/12391828.html Again, I don't recommend using that script. Let me explain how the networking model works in Dota 2 阅读全文
posted @ 2022-08-16 20:30 dewxin 阅读(215) 评论(0) 推荐(0)
摘要: 这篇文章主要介绍了c#实现图片二值化例子,图像二值化就是将图像上的像素点的灰度值设置为0或255,也就是将整个图像呈现出明显的黑白效果,需要的朋友可以参考下 C#将图片2值化示例代码,原图及二值化后的图片如下: 原图: 二值化后的图像: 原文链接: https://www.cnblogs.com/M 阅读全文
posted @ 2022-08-09 22:57 dewxin 阅读(469) 评论(0) 推荐(0)
摘要: https://electronics.stackexchange.com/questions/515570/what-is-the-practical-probability-of-a-bit-getting-flipped-during-transmission For fiber optic 阅读全文
posted @ 2022-07-30 16:07 dewxin 阅读(23) 评论(0) 推荐(0)
摘要: Can I skip the lock when reading an integer? Posted on March 12, 2014 Today, a question from a Coverity customer: Here is a greatly simplified version 阅读全文
posted @ 2022-06-27 01:41 dewxin 阅读(19) 评论(0) 推荐(0)
摘要: Is C# Slower Than C++? C# / March 16, 2020 Is C# slower than C++? That’s a pretty big question. As a junior developer, I was sure that the answer is “ 阅读全文
posted @ 2022-06-06 21:16 dewxin 阅读(97) 评论(0) 推荐(0)
摘要: MySQL版本为8.0 组成表空间的各个单位 上图是一张经典的关于页,区,段之间关系的视图,一个区由页组成,一个段由多个区组成。其中段是管理页的逻辑单位,有叶子节点段,非叶子节点段还有回滚段。区是地址连续的物理单位。 对于这张图,我们还需要一些解释,一个段中的不同区物理上不一定连续,且一个段可能只包 阅读全文
posted @ 2021-02-25 00:11 dewxin 阅读(502) 评论(0) 推荐(0)
摘要: 5.7 8.0 InnoDB 内存结构 缓冲池 Buffer Pool InnoDB缓冲池被midPoint划分为new和old两个部分。 默认情况下: 3/8的缓冲池被用于old部分。 中点就是new old两个部分的边界。 当InnoDB从磁盘读取页到内存缓冲池的时候,插入到midpoint位置 阅读全文
posted @ 2021-01-12 23:49 dewxin 阅读(185) 评论(0) 推荐(0)