📜 ⬆️ ⬇️

Optimize MySQL queries using Neor Profile SQL

Any programmer creating loadable projects with thousands of users has ever wondered how he can improve SQL queries and save many hundreds of dollars. The analysis process usually begins with the profiling and debugging of the application code. Next comes the process of optimizing SQL queries, for this you can use the built-in tools of the MySQL server. For example, MySQL logging to a file. But sooner or later you begin to understand that this is not convenient.

image

In the special free profiler Neor Profile SQL , optimization operations are a simple process for setting up your application and collecting SQL queries from it. The tool works on all widely used systems (Windows, Mac OS X and Linux). Supports MySQL and MariaDB.
')
Neor Profile SQL works as a kind of proxy and, therefore, you need a computer where you can open ports or on the network, depending on the requirements. Your application is only required to change the standard MySQL 3306 port to the installed one, usually 4040. The rest is self-explanatory, the interface is easy to use.

In addition, you should add the main functionality of the product:
- Counting all requests with details on time, code and size
- General statistics of strings received and sent to the DBMS
- Search for slow queries
- Save the session for later comparison of results
- Explain built-in command of any request
- The program is free

Source: https://habr.com/ru/post/183602/


All Articles