0ri0nRo / psql-query-optimizr

psql-query-optimizr is a tool designed to analyze and enhance the efficiency of SQL queries in PostgreSQL databases.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

PostgreSQL query plotter

More details here some benchmark

Visuals

Same query with different number of elements in own database.

Query with 400k elements and 15 elements search.

400k

Query with 1 milion elements.

1m

Query with 1 milion elements and 35 elements search.

1m_35elements

Query with 1 milion elements and 100 elements search.

1ml_100elements

Files

  • insertBookingRandom.py: This script is likely used to insert random booking data into a database or a system. It could be used for testing the functionality of a booking system by populating it with sample data to ensure that bookings are being recorded and processed correctly.
  • test.py: This script is typically used to run a series of unit tests on your application. It might include a suite of tests that validate the correctness of your application's logic, functions, and classes to ensure that recent changes haven't broken existing functionality.

Usage

# How to run the scripts
python insertBookingRandom.py
python test.py

Create table in psql:

CREATE TABLE cd.bookings
(
    bookid integer NOT NULL, 
    facid integer NOT NULL, 
    memid integer NOT NULL, 
    starttime timestamp NOT NULL,
    slots integer NOT NULL,
    CONSTRAINT bookings_pk PRIMARY KEY (bookid),
    CONSTRAINT fk_bookings_facid FOREIGN KEY (facid) REFERENCES cd.facilities(facid),
    CONSTRAINT fk_bookings_memid FOREIGN KEY (memid) REFERENCES cd.members(memid)
);

About

psql-query-optimizr is a tool designed to analyze and enhance the efficiency of SQL queries in PostgreSQL databases.

License:Apache License 2.0


Languages

Language:Python 100.0%