I have below 2 queries
$partialQuery1 = " @co1 txt1 @col2 txt2 @col3 txt3";
$partialQuery2 = " @co1 txt4 @col2 txt5 @col3 txt6";
Now, I want to apply OR like below
$partialQuery3 = $partialQuery1 . " OR(|) " . $partialQuery2;
$cl->Query(partialQuery3, "indexer");
This is giving me zero (0) resuts for now. I am not sure whether it is possible or not in sphinx?
Note : I don't want use below approach
$partialQuery = " @col (txt1 | txt4) ....";