We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
not quite sure how to set multiple wordform files for index
$params = [ 'body' => [ 'settings' => [ 'wordforms' => '/usr/local/sphinx/data/wordforms.txt' ], 'columns' => [ 'title'=>['type'=>'text'], 'price'=>['type'=>'float'] ] ], 'index' => 'products' ]; $index = new \Manticoresearch\Index($client); $index->create($params);
however index with such config works well
index products { wordforms = /usr/local/sphinx/data/wordforms.txt wordforms = /usr/local/sphinx/data/alternateforms.txt type = rt path = idx rt_field = title rt_attr_uint = price }
The text was updated successfully, but these errors were encountered:
Need to see first how this will be handled by Manticore.
Sorry, something went wrong.
Maybe this one?
https://github.com/manticoresoftware/manticoresearch-php/blob/master/docs/indexclass.md#create
If a setting can have multiple values, an array of values will be used, like:
$index->setName('mynewindex'); $index->create([], [ 'type' => 'distributed', 'local' => [ 'local_index_1', 'local_index_2', ] ] );
adriannuta
No branches or pull requests
not quite sure how to set multiple wordform files for index
however index with such config works well
The text was updated successfully, but these errors were encountered: