MySQL Query Profiler
Installation and use
Install
Linux
Either use the AppImage, deb, or rpm file in Bintray or install the snap:
snap install mysql-query-profiler
Windows
Install the exe-file from Bintray.
MacOS
Use the zip-file from Bintray.
Usage
Start the application, connect to a database (remote or local) and insert a query you want to debug. Performance will be shown along with an optimizer trace in addition to more options you can configure.
Development
Requirements
- Node 10 or later
- Npm
- Yarn
Install for development
First, clone the repo via git and install dependencies:
git clone [project link]
cd mysql-query-profiler
yarn
Test database: test_db
Starting Development
Start the app in the dev
environment. This starts the renderer process in hot-module-replacement mode and starts a webpack dev server that sends hot updates to the renderer process:
yarn dev
Packaging for Production
To package apps for the local platform:
yarn package
See the scripts in package.json for more packaging options.