BareRTC/pkg/models
Noah Petherbridge 89dd40f77f Refactor SQL query for DMs History modal
The ORDER BY timestamp on the DMs Username History endpoint was causing
SQLite to do a full table scan by timestamp instead of indexing on
channel ID. So, instead, we fetch the distinct channel IDs for the
current user and add them to an IN clause on the main query (instead of
a LIKE clause), which causes the index to use the channel_id instead of
timestamp. This may improve CPU performance and speed on this endpoint.
2025-03-17 17:38:37 -07:00
..
database.go Direct Message History 2024-03-29 17:48:01 -07:00
direct_messages.go Refactor SQL query for DMs History modal 2025-03-17 17:38:37 -07:00