Test indexed vs non-indexed datasets

Improve benchmark UI

Disable function and php tests (they are very slow)
This commit is contained in:
2025-05-05 13:47:08 -07:00
parent e48fd1bd53
commit d8b0777a3b
3 changed files with 280 additions and 88 deletions

View File

@@ -7,12 +7,15 @@
```
This will (re)create:
- Two tables `floats` and `points`.
- Three procedures `generate_coords`, `float_coords_within_radius`,
`hybrid_coords_within_radius`, and `point_coords_within_radius`.
- Two functions `haversine` and `haversine_alt`.
- Four tables: `floats`, `floats_indexed`, `points`, and `points_indexed`.
- Nine procedures: `generate_coords`, `float_coords_within_radius`,
`float_indexed_coords_within_radius`, `hybrid_coords_within_radius`
`hybrid_coords_within_radius_point`, `hybrid_indexed_coords_within_radius`,
`hybrid_indexed_coords_within_radius_point`, `point_coords_within_radius`,
`point_indexed_coords_within_radius`
- Two functions: `haversine` and `haversine_alt`.
And then will generate and insert 1,000,000 random coordinates into `floats` and
`points`.
And then will generate and insert 1,000,000 random coordinates into each of
the four tables.
2. Navigate to `index.php` in your browser and login.