I am using sphinx search engine for full text search and I want to send several search queries to searchd deamon in one batch. I know that it's possible in SphinxAPI, but I want to use this feature in SphinxQL.I have read from Sphinx documnetation that :
Starting version 2.0.1-beta, SphinxQL supports multi-statement queries, or batches ... (Ref:+)
so my questions are:
1) How can I use this feature in SphinxQL? Is it enough to separate select statement with ';' and by this method they are considered in one batch?
2) How can I use this feature in SphinxQL that connected with C# by using mysql library? (How to send multiple query and manage multiple result set?)