From 2af6092c38a4285a769772b6718022d2a22a464a Mon Sep 17 00:00:00 2001 From: Alpha Date: Tue, 25 Nov 2014 16:22:17 -0500 Subject: [PATCH] update README for proper order of multi index searching --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 31137c5f..dd50b642 100755 --- a/README.md +++ b/README.md @@ -67,7 +67,7 @@ $conn = new Connection(); $conn->setParams(array('host' => 'domain.tld', 'port' => 9306)); $query = SphinxQL::create($conn)->select('column_one', 'colume_two') - ->from('index_delta', 'index_main', 'index_ancient') + ->from('index_ancient', 'index_main', 'index_delta') ->match('comment', 'my opinion is superior to yours') ->where('banned', '=', 1);