我想在mysql中使查询执行速度变慢。不是没有索引和编写错误的查询。
仅通过配置,我希望查询执行变慢。
我尝试更改/etc/mysql/my.cnf
# * Fine Tuning
#
key_buffer = 0M
max_allowed_packet = 1M
thread_stack = 19K
thread_cache_size = 2
##disabled cache
query_cache_limit = 0
query_cache_size = 0
##limited innoDB buffer pool size
innodb_buffer_pool_size = 0M
查询执行时间仍然没有明显减少。
SQl版本:5.5.57-0ubuntu0.14.04.1(Ubuntu)
非常感谢任何帮助或建议。