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
Currently queries to the DB are not using indexes. This isn't causing noticeable performance problems because the tables are small enough that full table scan are still fast. But as the DB grows we may need to examine which queries will benefit from indexing and add appropriate indexes. This will require adding the indexes to the existing tables and also adding code to the app to create indexes when the tables are created.
The text was updated successfully, but these errors were encountered:
Currently queries to the DB are not using indexes. This isn't causing noticeable performance problems because the tables are small enough that full table scan are still fast. But as the DB grows we may need to examine which queries will benefit from indexing and add appropriate indexes. This will require adding the indexes to the existing tables and also adding code to the app to create indexes when the tables are created.
The text was updated successfully, but these errors were encountered: