You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[Index advisor](https://database.dev/olirice/index_advisor) is a Postgres extension for recommending indexes to improve query performance.
7
+
[Index advisor](https://github.com/supabase/index_advisor) is a Postgres extension for recommending indexes to improve query performance.
8
+
9
+
Features:
10
+
11
+
- Supports generic parameters e.g. `$1`, `$2`
12
+
- Supports materialized views
13
+
- Identifies tables/columns obfuscated by views
14
+
- Skips duplicate indexes
15
+
16
+
index_advisor is accessible directly through Supabase Studio by navigating to the [Query Performance Report](/dashboard/project/*/database/query-performance) and selecting a query and then the "indexes" tab.
17
+
18
+

19
+
20
+
Alternatively, you can use index_advisor directly via SQL.
8
21
9
22
For example:
10
23
@@ -20,25 +33,12 @@ from
20
33
(1 row)
21
34
```
22
35
23
-
Features:
24
-
25
-
- Supports generic parameters e.g. `$1`, `$2`
26
-
- Supports materialized views
27
-
- Identifies tables/columns obfuscated by views
28
-
- Skips duplicate indexes
29
-
30
36
## Installation
31
37
32
-
index_advisor is a trusted language extension, which means it is directly installable by users from the [database.dev](https://database.dev/) SQL package repository.
33
-
34
-
To get started, enable the dbdev client by executing the [setup SQL script](https://database.dev/installer).
0 commit comments