摘要: 一、一些常见的SQL实践 1). 负向条件查询不能使用索引select * from order where status!=0 and stauts!=1not in/not exists都不是好习惯 可以优化为in查询:select * from order where status in(2, 阅读全文
posted @ 2018-04-17 18:54 Jtianlin 阅读(238) 评论(0) 推荐(0) 编辑
摘要: 一、什么是高并发 高并发(High Concurrency)是互联网分布式系统架构设计中必须考虑的因素之一,它通常是指,通过设计保证系统能够同时并行处理很多请求。 高并发相关常用的一些指标: 响应时间(Response Time):系统对请求做出响应的时间。例如系统处理一个HTTP请求需要200ms 阅读全文
posted @ 2018-04-17 14:41 Jtianlin 阅读(364) 评论(0) 推荐(0) 编辑