👀 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
Updated the mock init logic in strategy tests
Nick-S-2018 · 2024-01-12 · 0 · #187
henze-housepedia · 2024-10-01 · 1 · #218
sanikolaev · 2024-10-01
NICK will remove https://github.com/manticoresoftware/manticoresearch-php/blob/master/CHANGELOG.md
https://github.com/manticoresoftware/manticoresearch-php/blob/master/CHANGELOG.md
sanikolaev · 2024-04-05 · 1 · #202
Method to upload a large batch at max speed
marclaporte · 2024-09-24 · 1 · #217
sanikolaev · 2024-09-24
NICK will fix the example related with "new Match"
In the docs we say: However new Match is not working: PHP Parse error: syntax error, unexpected token "match", expecting ":" in /Users/sn/test.php on line 18 As discussed, we need to update the docs.
sanikolaev · 2024-04-05 · 1 · #203
How to set match mode to SPH_MATCH_EXTENDED2 ?
marios88 · 2022-12-15 · 2 · #105
sanikolaev · 2022-12-15
We need to include the new functionality in the JSON interface - composite aggregation - https://manual.manticoresearch.com/dev/Searching/Grouping#GROUP-BY-multiple-fields-at-once
sanikolaev · 2024-04-10 · 1 · #204
How to set match mode to SPH_MATCH_EXTENDED2 ?
marios88 · 2022-12-15 · 2 · #105
marios88 · 2022-12-15
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
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
djklim87 · 2024-09-02
Validate document on nulls in fields before we insert, update or replace
donhardman · 2024-01-17 · 0 · #188
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
stevenbrookes · 2024-09-02
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
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
tomatolog · 2024-09-02
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
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
stevenbrookes · 2024-09-02
We need the php client to support the 'partial replace' feature recently added to Manticore.
Nick-S-2018 · 2024-04-17 · 1 · #206
est::size_S
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
tomatolog · 2024-09-02
donhardman · 2023-12-05 · 0 · #172
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
stevenbrookes · 2024-09-02
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
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
tomatolog · 2024-09-02
`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
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
tomatolog · 2024-09-02
Attach failed request to NoMoreNodesException
It is useful to retrieve a failed request in case of NoMoreNodesException.
markomilivojevic · 2024-03-21 · 0 · #195
Update vs replace vs partial replace
stevenbrookes · 2024-09-02 · 9 · #216
stevenbrookes · 2024-09-02
Autoset limit when fetching documents by ids
donhardman · 2023-12-07 · 1 · #175
est::size_S
getDocumentByIds doees not work: "self" in callables is deprecated
donhardman · 2024-04-26 · 3 · #170
bugest::size_S
donhardman · 2023-12-05
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
getDocumentByIds doees not work: "self" in callables is deprecated
donhardman · 2024-04-26 · 3 · #170
bugest::size_S
sanikolaev · 2023-12-05
Implemented the 'partial_replace' feature
Nick-S-2018 · 2024-04-17 · 0 · #208
getDocumentByIds doees not work: "self" in callables is deprecated
donhardman · 2024-04-26 · 3 · #170
bugest::size_S
Nick-S-2018 · 2024-04-26
sanikolaev · 2022-01-06 · 0 · #75
The first request is not search request if using basic auth
vipercs90 · 2024-04-26 · 8 · #146
est::size_S
vipercs90 · 2023-10-19
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-01 · 1 · #218
The first request is not search request if using basic auth
vipercs90 · 2024-04-26 · 8 · #146
est::size_S
sanikolaev · 2023-10-20
Add the way to get _knn_dist property from the doc
We need the way to get _knn_dist property when it presents in doc
donhardman · 2024-04-09 · 0 · #201
The first request is not search request if using basic auth
vipercs90 · 2024-04-26 · 8 · #146
est::size_S
vipercs90 · 2023-10-20
Switch to manticoresoftware/php-code-standard coding standard
Nick-S-2018 · 2024-01-17 · 0 · #189
The first request is not search request if using basic auth
vipercs90 · 2024-04-26 · 8 · #146
est::size_S
vipercs90 · 2023-10-20