Guest User

Untitled

a guest
Jun 25th, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.34 KB | None | 0 0
  1. Bitmap Heap Scan on urls (cost=38.34..866.61 rows=818 width=675) (actual time=54.515..92707.842 rows=77427 loops=1)
  2. Filter: ('19 covid'::text <% search_words)
  3. Rows Removed by Filter: 767
  4. Heap Blocks: exact=48651
  5. Buffers: shared hit=324427
  6. -> Bitmap Index Scan on urls_search_words_idx1 (cost=0.00..38.14 rows=818 width=0) (actual time=45.755..45.756 rows=78194 loops=1)
  7. Index Cond: (search_words %> '19 covid'::text)
  8. Buffers: shared hit=374
  9. Planning Time: 0.815 ms
  10. Execution Time: 92716.785 ms
  11.  
  12.  
  13. Table "dmp_test.urls"
  14. Column | Type | Collation | Nullable | Default
  15. ---------------------+-----------------------------+-----------+----------+-------------------------------------------
  16. id | bigint | | not null | nextval('dmp_test.urls_id_seq'::regclass)
  17. url | text | | |
  18. creation_date | timestamp without time zone | | |
  19. users_count | integer | | |
  20. age_to_17 | integer | | |
  21. age_to_24 | integer | | |
  22. age_to_40 | integer | | |
  23. age_to_90 | integer | | |
  24. men | integer | | |
  25. women | integer | | |
  26. income_level_a | integer | | |
  27. income_level_b | integer | | |
  28. income_level_c | integer | | |
  29. income_level_c_plus | integer | | |
  30. title | text | | |
  31. description | text | | |
  32. keywords | text | | |
  33. search_words | text | | |
  34. Indexes:
  35. "urls_id_index" btree (id)
  36. "urls_search_words_idx" gin (search_words)
  37. "urls_search_words_idx1" gin (search_words)
Add Comment
Please, Sign In to add comment