Guest User

Untitled

a guest
Jan 17th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. POSTGRES:
  2. commentsSection=# explain analyze select * from country where id = 10000000;
  3. QUERY PLAN
  4. -----------------------------------------------------------------------------------------------------------------------
  5. Index Scan using country_pkey on country (cost=0.42..8.44 rows=1 width=79) (actual time=0.045..0.045 rows=0 loops=1)
  6. Index Cond: (id = 10000000)
  7. Planning time: 24.991 ms
  8. Execution time: 17.280 ms
  9. (4 rows)
  10.  
  11. RAVENDB:
  12. from Country where songId = '10000000' => 48ms
Add Comment
Please, Sign In to add comment