I am trying to implement a form of "public figure" search, that takes a partial string and returns both pages and users that are likely to be publicly known. On the page side I'm sorting by number of likes, on the user side I'm sorting by number of subscribers. Pages work fine. Users do not.
The crux of my problem is that I can't use CONTAINS() on the user table, like so:
SELECT id, name from USER where CONTAINS("Jimmy F") ORDER BY subscriber_count DESC
I get zero results. However, if I use the Profile table, it works. From here, I can do a sub-query, resulting in this:
SELECT uid,name from USER WHERE uid in (SELECT id FROM profile where
CONTAINS("Jimmy F")) ORDER BY subscriber_count DESC
The problem here is that the sub-query is not sorted. So, this example, I would expect to see Jimmy Fallon, who has 633k subscribers. I don't, because he isn't included in that profile subquery. I can increase the LIMIT on that subquery, but it slows it a lot (LIMIT 200 took 4 seconds to come back, and still didn't include Jimmy).
So my broad question here is: any ideas? I don't know where to turn for a better result, here.