- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个包含超过 870.000 行的数据库。每次收到请求时,我都必须执行 COUNT 来检查行是否存在。这些 COUNT 请求最多需要 180 秒才能执行。这是相当长的。
这是我的查询:
SELECT COUNT(0) AS aantal FROM milk_quotes WHERE shopId = '438' AND quoteId = '17424765'
解释扩展显示:
id select_type table type possible_keys key key_len ref rows filtered Extra
1 SIMPLE milk_quotes ref shopId shopId 4 const 87648 100.00 Using where
表结构为:
CREATE TABLE `milk_quotes ` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`shopId` mediumint(11) DEFAULT NULL,
`quoteId` bigint(11) DEFAULT NULL,
`customerId` bigint(11) DEFAULT NULL,
`customerIP` int(11) unsigned DEFAULT NULL,
`recoveryHash` char(32) CHARACTER SET latin1 DEFAULT NULL,
`language` varchar(2) CHARACTER SET latin1 DEFAULT 'nl',
`channel` varchar(11) CHARACTER SET latin1 DEFAULT NULL,
`productsCount` int(11) DEFAULT NULL,
`isPaid` tinyint(1) DEFAULT '0',
`isNotified` enum('0','1') CHARACTER SET latin1 DEFAULT '0',
`paymentId` varchar(50) CHARACTER SET latin1 DEFAULT NULL,
`paymentCountry` varchar(2) CHARACTER SET latin1 DEFAULT NULL,
`priceIncl` decimal(10,2) DEFAULT NULL,
`createdAt` timestamp NULL DEFAULT CURRENT_TIMESTAMP,
`updatedAt` timestamp NULL DEFAULT NULL,
`shopUpdatedAt` timestamp NULL DEFAULT NULL,
`recalculatedAt` timestamp NULL DEFAULT NULL,
`shopCreatedAt` timestamp NULL DEFAULT NULL,
`firstReminder` mediumint(9) DEFAULT NULL,
`secondReminder` mediumint(9) DEFAULT NULL,
`thirdReminder` mediumint(9) DEFAULT NULL,
`skipQuote` enum('1','0') DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `isPaid` (`isPaid`),
KEY `shopId` (`shopId`),
KEY `firstReminder` (`firstReminder`)
) ENGINE=InnoDB AUTO_INCREMENT=930952 DEFAULT CHARSET=utf8;
Inno DB 变量:
have_innodb YES
ignore_builtin_innodb OFF
innodb_adaptive_hash_index ON
innodb_additional_mem_pool_size 1048576
innodb_autoextend_increment 8
innodb_autoinc_lock_mode 1
innodb_buffer_pool_size 8388608
innodb_checksums ON
innodb_commit_concurrency 0
innodb_concurrency_tickets 500
innodb_data_file_path ibdata1:10M:autoextend
innodb_data_home_dir
innodb_doublewrite ON
innodb_fast_shutdown 1
innodb_file_io_threads 4
innodb_file_per_table OFF
innodb_flush_log_at_trx_commit 1
innodb_flush_method
innodb_force_recovery 0
innodb_lock_wait_timeout 50
innodb_locks_unsafe_for_binlog OFF
innodb_log_buffer_size 1048576
innodb_log_file_size 5242880
innodb_log_files_in_group 2
innodb_log_group_home_dir ./
innodb_max_dirty_pages_pct 90
innodb_max_purge_lag 0
innodb_mirrored_log_groups 1
innodb_open_files 300
innodb_rollback_on_timeout OFF
innodb_stats_on_metadata ON
innodb_support_xa ON
innodb_sync_spin_loops 20
innodb_table_locks ON
innodb_thread_concurrency 8
innodb_thread_sleep_delay 10000
innodb_use_legacy_cardinality_algorithm ON
最佳答案
一个查询在每个查询中每个表只能使用一个索引;因此,如果您在单个查询中查找多个字段,则需要有一个涵盖所有字段的索引。在您的查询中,使用了 shopId
索引,但在该 quoteId
中按顺序扫描,这不太好(我假设有一堆 quoteId
每个商店都有几行,是吗?)。尝试将架构中的 shopId
索引更改为
KEY `shopAndQuoteIds` (`shopId`, `quoteId`),
(如果您想在现有表上执行此操作,我相信 ALTER TABLE aantal DROP INDEX shopId
后跟 ALTER TABLE aantal ADD KEY shopAndQuoteIds (shopId, quoteId)
应该这样做。在执行此操作之前,请备份您的数据库!或者,您可以转储表,将架构更改为上述内容,然后将其重新导入回来。)
请注意,可以使用键的任何前缀;因此 (shopId, quoteId)
索引可用于 shopId
查询和 shopId
+ quoteId
查询,但是不适用于 quoteId
查询。事实上,它仍然可以用于普通的 shopId
查询,这意味着通过创建这个新索引并删除旧的 shopId
索引,您不会有任何损失。
关于MySQL 简单 COUNT 花费很长时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27794269/
这个问题在这里已经有了答案: Isn't an Int64 equal to a long in C#? (2 个答案) 关闭 9 年前。 它不应该是一个整数类型吗? 这样,一些使用 int 的函数
当我遇到一些我想知道的事情时,我正忙着解析一个二进制文件。 Stream.Position属性的类型为Int64或long。为什么是这样?因为流中的位置不能为负,所以使用 UInt64 不是更有意义吗
所以第一部分是我从用户那里获得输入,在本例中,输入是“1”作为从另一个函数接收的字符值。 printf ("\nPlease enter 1, 2, 3 or q: "); option =
我正在尝试使用以下代码从 REST 服务返回 JSON: $categories = $categoriesController->listAll(); if($categories){ hea
我阅读了文档,它说 long 是 %li,但打印输出返回为 -2147024891。是什么赋予了? 最佳答案 您甚至没有提供要打印的号码,但我猜您已经无意中发现了签名打印和未签名打印之间的区别。 使用
我正在创建自定义购物车,我正在构建一个查询,该查询从检索我刚刚保存到购物车表中的 session_id 开始。我知道这个值被保存了,我在 mysql 命令行运行这个查询,它返回我需要的但我没有将值放入
我有一个包含 textView 的 scrollView。如果文本很长并且不适合屏幕,我想增加 textView 高度(我想我可以通过添加 NSLayoutConstraint outlet 并修改它
我有一个基本的数据库处理程序类,其中有一个使用 PDO::FETCH_ASSOC 参数返回结果集的公共(public)方法: public function resultSet() { $th
在后台线程中,我调用 PublishSubject.onNext(); 并在主线程中通过 subscribe(PublishSubject.filter(message -> message.getI
我想知道为什么 Amazon Web Services 控制台登录页面有这么长的 url?为什么不只发布数据而不显示其中包含大量数据的冗长 url。以这种方式实现有什么充分的理由吗? 最佳答案 我认为
这个问题在这里已经有了答案: Can I mix MySQL APIs in PHP? (4 个答案) 关闭 6 年前。 希望我犯了一个快速而明显的错误,我浏览了 previous question
我得到了答案:如果我禁用了cookie,那么使用URL重定向我可以传递JSESSIONID,但我的URL已经很长,因为我使用它有约束的GET方法。那怎么办我应该使用我的 session 吗?我希望我的
目前,当我使用 DOMDocument 对象并调用 saveHTML() 时,它会自动添加一些我不需要的 html 标签。我尝试了此处建议的解决方案 ( https://stackoverflow.c
我是一名优秀的程序员,十分优秀!