码迷,mamicode.com
首页 >  
搜索关键字:explain plan    ( 3144个结果
mongodb索引
查看执行计划 db.find(query).explain() “cursor”:“BasicCursor” --说明没有索引 “nscannedObjects”:1000 --理论上要扫描的行数 “cursor”: “BasicCursor sn_1” --用到了btree索引 2. 查看索引 d ...
分类:数据库   时间:2020-04-25 11:04:04    阅读次数:69
CF Contest 526 G. Spiders Evil Plan 长链剖分维护贪心
LINK: "Spiders Evil Plan" 非常巧妙的题目。 选出k条边使得这k条边的路径覆盖x且覆盖的边的边权和最大。 类似于桥那道题还是选择2k个点 覆盖x那么以x为根做长链剖分即可。 不过这样过不了。 还是考虑树的直径 可以发现覆盖x的那些点一定有一个是树的直径的两端之一。 所以我们直 ...
分类:其他好文   时间:2020-04-24 22:11:17    阅读次数:65
17-升级k8s
本文介绍如何安装和升级使用rancher搭建的k8s 2020/04/23更新 rke 1.1.0 版新增了重大功能,无需停机即可更新 k8s 集群,详情参见: "how upgrades work" 1. 下载 rke 在 "rke release note" 页面下载需要的版本 2. 查看 rk ...
分类:其他好文   时间:2020-04-23 22:53:56    阅读次数:81
DEV GridView快速定位到指定行
int focuseHandle = gv.FocusedRowHandle; GridColumn column = gv.Columns["plan_id"]; if (column != null) { if (focuseHandle >= 0) { var topRow = gv.GetR ...
分类:其他好文   时间:2020-04-23 12:10:14    阅读次数:253
我会手动创建线程,为什么让我使用线程池?
| 好看请赞,养成习惯 你有一个思想,我有一个思想,我们交换后,一个人就有两个思想 If you can NOT explain it simply, you do NOT understand it well enough 现陆续将Demo代码和技术文章整理在一起 "Github实践精选" ,方便 ...
分类:编程语言   时间:2020-04-22 09:28:29    阅读次数:76
【技术学习】Mongo Administration
Latest: Support Plan and Cloud Manager Access Cloud Manager: https://cloud.mongodb.com/ Access Mongo Support https://support.mongodb.com Tuning https: ...
分类:其他好文   时间:2020-04-21 16:46:29    阅读次数:54
共享文件夹(局域网)报错:The username or password is incorrect
我用 Console APP 可以访问创建,但是我们的Web程序就报错: 也是奇葩了。找到一位大神的方法: https://stackoverflow.com/questions/582988/can you explain why directoryinfo getfiles produces t ...
分类:其他好文   时间:2020-04-20 21:35:38    阅读次数:250
674. Longest Continuous Increasing Subsequence
Problem : Given an unsorted array of integers, find the length of longest continuous increasing subsequence (subarray). Example 1: Example 2: Note: Le ...
分类:其他好文   时间:2020-04-18 14:06:13    阅读次数:59
646. Maximum Length of Pair Chain
Problem : You are given n pairs of numbers. In every pair, the first number is always smaller than the second number. Now, we define a pair (c, d) can ...
分类:其他好文   时间:2020-04-18 10:09:19    阅读次数:67
MySQL 性能优化神器 Explain 使用分析
MySQL 性能优化神器 Explain 使用分析 mysql优化 mysql 更新于 2017-01-18 约 28 分钟 简介 MySQL 提供了一个 EXPLAIN 命令, 它可以对 SELECT 语句进行分析, 并输出 SELECT 执行的详细信息, 以供开发人员针对性优化.EXPLAIN ...
分类:数据库   时间:2020-04-17 17:16:37    阅读次数:78
3144条   上一页 1 ... 19 20 21 22 23 ... 315 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!