You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
sphinxql is great for pagination because sorted search results return any attributes essentially replacing a database, will this package work with it?
the queries use regular mysql back-end and look like this:
SELECT * FROM index
WHERE MATCH ('keyword')
AND type IN (1,2,3)
ORDER BY attribute
LIMIT 0, 1000;
also the number of results for the last query is obtained by running another query:
SHOW META;
The text was updated successfully, but these errors were encountered:
sphinxql is great for pagination because sorted search results return any attributes essentially replacing a database, will this package work with it?
the queries use regular mysql back-end and look like this:
SELECT * FROM index
WHERE MATCH ('keyword')
AND type IN (1,2,3)
ORDER BY attribute
LIMIT 0, 1000;
also the number of results for the last query is obtained by running another query:
SHOW META;
The text was updated successfully, but these errors were encountered: