码迷,mamicode.com
首页 >  
搜索关键字:explain    ( 1254个结果
数据库中的索引
文章浅谈算法和数据结构: 十 平衡查找树之B树MySQL索引背后的数据结构及算法原理Query Planning(这篇是sqlite关于索引的文档)EXPLAIN QUERY PLAN MySQL单表百万数据记录分页性能优化 ...
分类:数据库   时间:2016-11-13 21:59:07    阅读次数:187
Explain语法
执行计划包含的信息 id 包含一组数字,表示查询中执行select子句或操作表的顺序 id相同,执行顺序由上至下 如果是子查询,id的序号会递增,id值越大优先级越高,越先被执行 id如果相同,可以认为是一组,从上往下顺序执行;在所有组中,id值越大,优先级越高,越先执行 select_type 表 ...
分类:其他好文   时间:2016-11-13 13:58:53    阅读次数:158
mysql优化
1.查询和慢查询 查询参数 SHOW VARIABLES LIKE '%quer%' 计划记录时间 是否开启慢查询 慢查询文件地址 2.执行计划 EXPLAIN 关键词 + sql语句 3.索引 ...
分类:数据库   时间:2016-11-13 13:36:05    阅读次数:147
mysql的优化
mySql的优化: 1>查询缓存优化sql 大多数的MySql数据库服务器都开启了缓存查询,这是提高sql性能的最有效方法之一,缓存查询是由mysql数据库引擎处理的。当有很多相同查询被执行了多次时,这些查询结果会被放在一个缓存中,这样后续相同sql的查询就不用访问表了,直接从缓存中取即可。 所以s ...
分类:数据库   时间:2016-11-08 17:05:40    阅读次数:251
broswer
Web browsers are probably the most widely used software. In this book I will explain how they work behind the scenes. We will see what happens when yo ...
分类:其他好文   时间:2016-11-08 13:17:35    阅读次数:153
How to choose the number of topics/partitions in a Kafka cluster?
This is a common question asked by many Kafka users. The goal of this post is to explain a few important determining factors and provide a few simple ...
分类:其他好文   时间:2016-11-06 17:02:02    阅读次数:387
MYSQL数据库性能调优之三:explain分析慢查询
...
分类:数据库   时间:2016-11-02 14:29:32    阅读次数:221
Java ConcurrentHashMap Example and Iterator--转
原文地址:http://www.journaldev.com/122/java-concurrenthashmap-example-iterator#comment-27448 Today we will look into Java ConcurrentHashMap Example. If yo ...
分类:编程语言   时间:2016-10-31 21:07:43    阅读次数:293
40 用户权限管理及查询缓存、索引和explain、MariaDB存储引擎及编译安装、MySQL中的事务
03 MariaDB存储引擎及编译安装CentOS6.x下安装Mariadb #准备MaridDB存储分区 [root@centos6~]#fdisk/dev/sda WARNING:DOS-compatiblemodeisdeprecated.It‘sstronglyrecommendedto switchoffthemode(command‘c‘)andchangedisplayunitsto sectors(command‘u‘). Command(mforh..
分类:数据库   时间:2016-10-30 01:25:51    阅读次数:328
sql 查询执行的详细时间profile
1.查看profile的设置 结果如下:profiling OFF 为关闭状态 2.开启profile 结果: 3.执行需要执行的sql explain select*........ 4.查询执行的sql 结果: 5.查看需要的sql执行详细信息 结果: 结果: 结果: status: hecki ...
分类:数据库   时间:2016-10-27 19:38:25    阅读次数:202
1254条   上一页 1 ... 81 82 83 84 85 ... 126 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!