1、python单例模式 2、python装饰器 3、画架构图
1、python单例模式 2、python装饰器 3、画架构图
1、session和cookie的区别和联系 cookie数据存放在客户的浏览器上,session数据放在服务器上。 cookie不是很安全,别人可以分析存放在本地的COOK...
链接:https://youzhixueyuan.com/how-to-design-double-11-seconds-kill-system.html 秒杀活动场景 淘宝...
链接:https://youzhixueyuan.com/the-principle-and-application-scenarios-of-kafka.html 一:Ka...
链接:https://youzhixueyuan.com/comparison-of-kafka-rocketmq-rabbitmq.html MQ消息队列的技术应用 1.解...
相关链接:https://youzhixueyuan.com/design-the-message-queue.html 消息队列整体设计思路 主要是设计一个整体的消息被消费...
原文链接:https://youzhixueyuan.com/mysql-row-locks-table-locks-pessimistic-locks.html 我们在操作...
最近也看了不少数据库及索引的相关文章,很多博文内容大同小异,本文单独列出,旨在记录、总结、挖掘相对少提及,实际操作,细节的问题,查漏补缺。 1、覆盖索引与回表查询 expla...
了解一下MySQL中的回表查询与索引覆盖。 回表查询 要说回表查询,先要从InnoDB的索引实现说起。InnoDB有两大类索引,一类是聚集索引(Clustered Index...
原文链:https://youzhixueyuan.com/index-principle-and-slow-query-optimization-of-mysql.html...
原文链接:https://youzhixueyuan.com/six-principles-of-vertical-and-horizontal-resolution-of-...
原文链接:https://youzhixueyuan.com/advantages-and-disadvantages-of-mysql-storage-engine.htm...
原文链接:https://youzhixueyuan.com/mysql-slow-query-optimization-index-optimization.html My...
原文链接:https://youzhixueyuan.com/the-difference-between-nosql-and-sql-and-the-comparison-...
原文链接:https://youzhixueyuan.com/database-master-slave-synchronization.html 数据主从同步的由来 互联网...
1、开始
1、下面代码的输出结果将是什么? list = ['a','b','c','d','e'] print(list[10:]) 代码将输出[],不会产生IndexError...
转载学习: 作者:安卓大叔 链接:https://www.jianshu.com/p/e136ec79235c 写在前面 当在10亿数据中只需要进行10几次比较就能查找到目标...