👀 While it's loading, feel free to check out the other repositories:
🔔 To get a notification when it's ready, leave your email here:
By entering your email, you agree to receive notifications and marketing-related emails
Filter by reset
can't use option “field_weights”
vendor/manticoresoftware/manticoresearch-php/src/Manticoresearch/Transport/Http.php 中,第 147 行] :"unknown option 'field_weights'" $results = $index->search("@(title,description) ".$words) ->sort("_score", "desc") ->sort('updatetime','desc') ->option(" …
jShi-git · 2024-12-16 · 1 · #227
The getDocumentByIds method throws an exception when the list of IDs passed to it is a filtered array, meaning it doesn't have an element at index 0. Here's the pseudo code to reproduce: $ids = [1 => 123]; $docs = $index->getDocumentByIds($ids); We can …
donhardman · 2023-12-08 · 1 · #173
`getDocumentByIds` returns not all documents when size of array > 20
This code only retrieves 20 documents, and currently, we don't have the option to chain a limit setting in the Client. However, I believe we shouldn't need to. We have an array of IDs, which should allow us to determine the necessary limit to fetch all …
donhardman · 2023-12-12 · 3 · #174
bugest::size_S
silent=true for drop() is not working
According to https://github.com/manticoresoftware/manticoresearch-php/blob/master/docs/indices.md#drop this shouldn't fail, but it fails: # cat test_drop.php <?php require_once __DIR__ . '/vendor/autoload.php'; $config = ['host'=>'127.0.0.1','port'=>9308 …
sanikolaev · 2025-02-19 · 1 · #238
bug
table
https://forum.manticoresearch.com/t/issue-with-manticore-search-during-load-testing-syntax-error-unexpected-end-near-and-500-internal-server-error/2124 get error like this $str = 'aaa'; $search = new Search($client); $search->setIndex($tablename); $ …
zatomant · 2025-02-26 · 3 · #240
Method to upload a large batch at max speed
Could / should the Manticore PHP client be adapted?
marclaporte · 2025-04-04 · 3 · #217
est::NO_ESTIMATE
Feature requests: multi-attribute sorting and case-insensitive sort directions
With regard to the sort() function in the Search class, I would like to be able to specify multi-attribute sorting, like so: $search->sort(['date' => 'DESC', 'attribute2' => 'ASC', 'attribute3' => 'DESC', 'attribute4' => 'ASC']); It appears that the …
Robert-K-S · 2023-12-09 · 8 · #109
Rename "index" to "table" in the docs
sanikolaev · 2025-02-26 · 3 · #237
We need to test the client with PHP 8.4 to make sure everything works fine.
Nick-S-2018 · 2025-02-19 · 5 · #228
Manticore Search 7.0.0 supports scroll, but manticosearch-php is not
chongshengdz · 2025-02-06 · 4 · #233
There's a workaround in https://github.com/manticoresoftware/manticoresearch-php/blob/master/test/Manticoresearch/ClusterTest.php#L103 : // workaround against unstable tests. For some reason the replication which // has to be synchronous acts like if it …
sanikolaev · 2022-01-07 · 1 · #74
We should implement joins via the JSON interface on the client side, following the results from this task: https://github.com/manticoresoftware/manticoresearch/issues/2208
donhardman · 2025-01-09 · 5 · #210
est::size_Mrel::upcoming
Question: Scaling and debugging connections
…Hi, Time to time, i am getting the following error on a single node (plain mode) manticore server. I don't see any related log in searchd.log, no error no warnings. After 1 retry to 1 node, connection has failed. No more retries left. Retries made: ... …
ardabeyazoglu · 2025-06-27 · 0 · #248
Curl connection fails randomly
We have an issue with curl connection which looks similar to the one described here. The client fails while processing multiple requests to the server executed in a loop. The issue can be reproduced with the test script and data attached. testing.zip …
Nick-S-2018 · 2025-04-30 · 2 · #243
est::size_M
why does this MATCH work? (code from your example)
Server version: 7.0.0 92c650401@25013002 (columnar 4.0.0 5aa8e43@25012409) (secondary 4.0.0 5aa8e43@25012409) (knn 4.0.0 5aa8e43@25012409) git branch manticore-7.0.0...origin/manticore-7.0.0 manticore-lemmatizer-uk , pymorphy2-dicts-uk python 3.9.11 php 7 …
zatomant · 2025-02-17 · 3 · #235
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
Problem Description When using the autocomplete method with numeric queries (e.g., 3409 ), it results in the following error: Manticoresearch\Buddy\Base\Plugin\Autocomplete\Handler::compareSuggestions(): Argument #1 ($a) must be of type string, int given, …
EvgenyAly · 2025-01-08 · 8 · #224
bug
PHP 8.3 Support - Use of "static" in callables is deprecated
Getting deprecation message when upgrading to PHP 8.3: vendor/manticoresoftware/manticoresearch-php/src/Manticoresearch/Index.php:144 Use of "static" in callables is deprecated
markomilivojevic · 2025-01-14 · 6 · #231
Can't create a table with a field with a property with a value
I can't create a table with a field with the property engine='columnar' . snikolaev@dev2:~$ cat test_client.php <?php require_once __DIR__ . '/vendor/autoload.php'; $config = ['host'=>'127.0.0.1','port'=>9308]; $client = new \Manticoresearch\Client($ …
sanikolaev · 2025-01-07 · 2 · #215
est::size_Srel::upcoming
failed to set multiple wordforms
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' ]; …
githubmanticore · 2023-11-25 · 2 · #39
Encoding Issues on getResponse()
Hello there, I am having problems with encoding on a project that before used SphinxQL Library. My database is in latin1 and I can't change it. The problem is here: public function getResponse() { if (null === $this->response) { $this->response = json_ …
bgrou · 2025-05-08 · 3 · #246