public class Search {
public static void main (String[] argv) throws IOException, SphinxException {
String index = "medindex";
SphinxClient cl = new SphinxClient();
cl.SetServer ("localhost", 8002);
//cl.SetWeights (new int[] {100, 1});
//cl.SetMatchMode (SphinxClient.SPH_MATCH_ANY);
cl.SetLimits (0, 10);
cl.SetSortMode (SphinxClient.SPH_SORT_RELEVANCE, "");