1、到mysql容器,先登录到数据库,查看是否开启
mysql -h 127.0.0.1 -uroot -p
SHOW VARIABLES LIKE slow_query_log; 2、如果没有开启,需要先开启
set global slow_query_log ON;
3、查看慢日志文件
SHOW VARIABLES LIKE slow_query_log…
Background
RevOps team has built a dashboard for sales team to track team members’ performance, but they’re blocked by how to provide a manager view based on sales’ hierarchy. Therefore, they seek for dev team’s help to clear their blocker.
From foll…
TypeError: AutoImport is not a function 原因:unplugin-auto-import 插件版本问题
Vue3基于Webpack,在vue.config.js中配置
当unplugin-vue-components版本小于0.26.0时,使用以下写法
const { defineConfig } require("vue/cli-se…