…: Doesn’t the primary key solution for random selection only work when the IDs for movies …from what you specify in the query? The tuple comparison you’re referring to is this example: WHERE… it would have to match the order of columns in the index. Example: WHERE (last_name, first_name) = (‘Karwin…
Post: Sphinx search performance optimization: attribute-based filters
…> select * from catalog where match(‘ancientkey_1′); | total_found | 1499266 | | time | 0.227 | sphinx> select * from catalog where match(‘ancientkey_0′); | total_found | 8852086 | | time | 1.309 | sphinx> select * from catalog where match(‘solar’); | total_found | 2510 | | time | 0.001 | sphinx> select * from catalog where match…

