Changes between Version 6 and Version 7 of P9


Ignore:
Timestamp:
05/25/26 21:38:25 (16 hours ago)
Author:
211099
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • P9

    v6 v7  
    405405== Scenario 2 - Annual genre popularity and engagement trend
    406406
    407 == Without index analysis
     407=== Without index analysis
    408408{{{
    409409|QUERY PLAN                                                                                                                                                                                                                                   |
     
    479479|Execution Time: 26.272 ms                                                                                                                                                                                                                    |
    480480}}}
    481 
     481== Indexes for this queries
     482{{{
     483CREATE INDEX idx_has_genre_genre_id
     484    ON has_genre(genre_id);
     485
     486CREATE INDEX idx_has_genre_story_id
     487    ON has_genre(story_id);
     488
     489CREATE INDEX idx_status_story_published
     490    ON status(story_id)
     491    WHERE status = 'published';
     492}}}