摘要: performance 阅读全文
posted @ 2016-08-11 18:13 papering 阅读(357) 评论(0) 推荐(0) 编辑
摘要: 实践: 1、 SHOW VARIABLES LIKE "%transaction%"; transaction_isolation REPEATABLE-READ 小结: 1、读未提交 T1没有提交时,T2即可以读取到 2、读提交,但不可重复读 T1没有提交时,T2即不可以读取到 但是即使T2中可以 阅读全文
posted @ 2016-08-11 16:32 papering 阅读(491) 评论(0) 推荐(0) 编辑
摘要: 小结:0、int(4) + ZEROFILL 实现3-->0003,但可以存储12345;1、ZEROFILL 在MySQL 8.0.17中被移除,可以通过LPAD实现补0; https://dev.mysql.com/doc/refman/8.0/en/integer-types.html MyS 阅读全文
posted @ 2016-08-11 14:59 papering 阅读(257) 评论(0) 推荐(0) 编辑
摘要: 小结: 1、UNICODE 字符集编码的标准有很多种,比如:UTF-8, UTF-7, UTF-16, UnicodeLittle, UnicodeBig 等; 2 服务器->网页 utf-8 文本->内存 unicode 3 python ord-chr作用 def chr(*args, **kw 阅读全文
posted @ 2016-08-11 11:27 papering 阅读(818) 评论(0) 推荐(0) 编辑
摘要: http://www.html5rocks.com/en/tutorials/speed/img-compression/ https://developers.google.com/speed/webp/ Image Formats An image format typically chains 阅读全文
posted @ 2016-08-11 10:01 papering 阅读(417) 评论(0) 推荐(0) 编辑
摘要: http://www.html5rocks.com/en/tutorials/speed/img-compression/ Types of compression algorithms There are generally two stages in an image compressor, a 阅读全文
posted @ 2016-08-11 09:53 papering 阅读(291) 评论(0) 推荐(0) 编辑
摘要: 《计算机操作系统》 进程是 1、程序的一次执行。 2、具有独立功能的程序在一个数据集合上运行的过程,是系统进行资源分配和调度的一个独立单位。 进程特征 1、动态性 由创建而产生,由调度而执行,由撤销而消亡 2、并发性 多个实体进程同存在于内存中,且能在一段时间内同时运行 3、独立性 独立运行、获得资 阅读全文
posted @ 2016-08-11 08:40 papering 阅读(628) 评论(0) 推荐(0) 编辑