👀 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
Adds method to unset last response in Client
I have a kafka consumer, which works as a demon. Manticore client is initialized one time at start. This consumer adds documents to manticore in bulk, say 100-200Mb at a time. I have noticed a memory leak, it increases every time the consumer adds …
acya-skulskaya · 2024-11-05 · 3 · #221
table
zatomant · 2025-02-21 · 2 · #240
Nick-S-2018 · 2025-02-19
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-21 · 2 · #240
table
zatomant · 2025-02-21 · 2 · #240
sanikolaev · 2025-02-21
Rename "index" to "table" in the docs
sanikolaev · 2025-02-19 · 2 · #237
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
sanikolaev · 2024-12-09
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
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
sanikolaev · 2024-12-09
Currently there is no way to specify a path in the connection config. For example, if my manticore server is behind nginx proxy and I want to access to it via http://localhost/manticore there is no way to do it. Would be cool to have something like this: …
aivchen · 2023-10-18 · 4 · #135
est::size_S
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
donhardman · 2024-12-12
Fixes #135 The only problem is testing. I didn't find an easy way to test url building functionality. @sanikolaev can you help with it?
aivchen · 2023-10-17 · 1 · #136
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
sanikolaev · 2024-12-12
donhardman · 2023-12-05 · 0 · #172
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
donhardman · 2024-12-13
As I see php code style is very various across the project. How about replacing PHP_CodeSniffer with Php-Cs-Fixer? The latter is very flexible, easy to set up and allows to fine tune almost any aspect of php code. Also I see that PHP_CodeSniffer is …
aivchen · 2024-01-17 · 8 · #137
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
sanikolaev · 2024-12-13
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
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
PavelShilin89 · 2025-01-07
`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
Autocomplete method throws error for numeric queries: "Argument #1 ($a) must be of type string"
EvgenyAly · 2025-01-08 · 8 · #224
bug
donhardman · 2025-01-08
Method to upload a large batch at max speed
Could / should the Manticore PHP client be adapted?
marclaporte · 2025-02-19 · 2 · #217
sanikolaev · 2025-02-20 · 2 · #236
CicerBro · 2025-02-19
Replaced `index` with `table` in related code parts and docs
Nick-S-2018 · 2025-02-20 · 0 · #241
sanikolaev · 2025-02-20 · 2 · #236
Nick-S-2018 · 2025-02-20
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
Fixed the handling of persistent curl connections
Nick-S-2018 · 2025-02-20 · 2 · #209
stevenbrookes · 2025-02-10
Autoset limit when fetching documents by ids
donhardman · 2023-12-07 · 1 · #175
est::size_S
Fixed the handling of persistent curl connections
Nick-S-2018 · 2025-02-20 · 2 · #209
Nick-S-2018 · 2025-02-20
Related issue https://github.com/manticoresoftware/manticoresearch-php/issues/228
sanikolaev · 2025-02-20 · 2 · #236
How to get a modified query when searching with FUZZY
DimmmCom · 2025-02-20 · 1 · #239
sanikolaev · 2025-02-20
Fixed the handling of persistent curl connections
Nick-S-2018 · 2025-02-20 · 2 · #209
How to set match mode to SPH_MATCH_EXTENDED2 ?
marios88 · 2022-12-15 · 2 · #105
sanikolaev · 2022-12-15
How to get a modified query when searching with FUZZY
Hello. Can you tell me if there is a way to get the actual query that was searched? When the search is enabled with the fix $query = 'fzzy serch'; $result = $index->search($query)->option('fuzzy', 1)->get(); you can use the highlight() method to highlight …
DimmmCom · 2025-02-20 · 1 · #239
How to set match mode to SPH_MATCH_EXTENDED2 ?
marios88 · 2022-12-15 · 2 · #105
marios88 · 2022-12-15
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
Can't create a table with a field with a property with a value
sanikolaev · 2025-01-07 · 2 · #215
est::size_Srel::upcoming
sanikolaev · 2024-12-16
sanikolaev · 2022-01-06 · 0 · #75
Can't create a table with a field with a property with a value
sanikolaev · 2025-01-07 · 2 · #215
est::size_Srel::upcoming
Nick-S-2018 · 2025-01-07
If I issue the following command, I get given error. $client->index('percolated_table')->search(['year'=>2000]); The connection I have is valid. When I use the sql method CALL PQ('percolated_table','{"year":2000}') I do get results, so that will be my …
henze-housepedia · 2024-10-29 · 6 · #218
waiting
Rename "index" to "table" in the docs
sanikolaev · 2025-02-19 · 2 · #237
Nick-S-2018 · 2025-02-19