摘要: https://zh.wikipedia.org/wiki/環形緩衝區 圆形缓冲区(circular buffer),也称作圆形队列(circular queue),循环缓冲区(cyclic buffer),环形缓冲区(ring buffer),是一种用于表示一个固定尺寸、头尾相连的缓冲区的数据结构 阅读全文
posted @ 2019-03-15 23:25 papering 阅读(562) 评论(0) 推荐(0) 编辑
摘要: Hystrix在项目中实践 https://mp.weixin.qq.com/s/4Fg0COnWRB3rRWfxbJt7gA 阅读全文
posted @ 2019-03-15 22:31 papering 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、ASCII编码、GBK编码不是变长编码; 2、数据压缩; 示例: aabacdab → 00100110111010 → |0|0|10|0|110|111|0|10| → aabacdab 3、变长编码: 符号-位长 映射; https://en.wikipedia.org/wiki/ 阅读全文
posted @ 2019-03-15 15:45 papering 阅读(2620) 评论(0) 推荐(0) 编辑
摘要: A Method for the Construction of Minimum-Redundancy Codes http://compression.ru/download/articles/huff/huffman_1952_minimum-redundancy-codes.pdf https 阅读全文
posted @ 2019-03-15 15:33 papering 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、mysql服务端主动关闭链接的秒数; MySQL :: MySQL 8.0 Reference Manual :: 5.1.8 Server System Variables https://dev.mysql.com/doc/refman/8.0/en/server-system-va 阅读全文
posted @ 2019-03-15 12:20 papering 阅读(601) 评论(0) 推荐(0) 编辑
摘要: Sleep The thread is waiting for the client to send a new statement to it. https://dev.mysql.com/doc/refman/8.0/en/thread-commands.html https://www.sao 阅读全文
posted @ 2019-03-15 12:12 papering 阅读(579) 评论(0) 推荐(0) 编辑
摘要: https://en.wikipedia.org/wiki/C_data_typesIn practice, char is usually eight bits in size and short is usually 16 bits in size (as are their unsigned 阅读全文
posted @ 2019-03-15 11:46 papering 阅读(348) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、查看全部线程; https://dev.mysql.com/doc/refman/8.0/en/show-processlist.html MySQL 8.0 Reference Manual / ... / SHOW PROCESSLIST Syntax 13.7.6.29 SHOW 阅读全文
posted @ 2019-03-15 11:38 papering 阅读(203) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、加快读写; 2、对于InnoDB表,在一定条件下,通过复制旧表重建; 3、实践中, 3.1、show processlist;查看线程,发现,认为堵塞读请求; 3.2、数据长度空间不变,索引长度空间减小;历史的写操作是:url访问统计表,当天多次更新当天聚合结果数据的逻辑是“当天数据删除 阅读全文
posted @ 2019-03-15 11:16 papering 阅读(496) 评论(0) 推荐(0) 编辑
摘要: mysql 字符集和校验规则( CHARSET & COLLATE) - 知乎 https://zhuanlan.zhihu.com/p/78080951 mallAllGoodsCREATE TABLE `qywl`.`mallAllGoods` ( `id` varchar(64) NOT NU 阅读全文
posted @ 2019-03-15 10:42 papering 阅读(5205) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、高->低; LITTLE-ENDIAN(小字节序、低字节序) BOM——Byte Order Mark 字节序标记 数据在内存中的存放顺序 阅读全文
posted @ 2019-03-15 00:31 papering 阅读(402) 评论(0) 推荐(0) 编辑