Query Suggestion Options
Last word completion
Keyboard Layouts
GitHub

👀 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

644 results 26 ms in manticoresoftware/manticoresearch-php

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-gitjShi-git · 2024-12-16 · 1 · #227

How to set match mode to SPH_MATCH_EXTENDED2 ?

marios88marios88 · 2022-12-15 · 2 · #105

SPH_MATCH_EXTENDED2 was temporary even in Sphinx. It's not supported in Manticore, at least officially (nothing about it in the docs https://manual.manticoresearch.com/) You can use option() to specify search options including ranking options. See https …

sanikolaevsanikolaev · 2022-12-15

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 …

sanikolaevsanikolaev · 2025-02-19 · 1 · #238

bug

How to set match mode to SPH_MATCH_EXTENDED2 ?

marios88marios88 · 2022-12-15 · 2 · #105

Thank you @sanikolaev for helpful insight and quick reply. For anyone interested here is my current code for emulating the old SPH_MATCH_EXTENDED2 match mode used in an autocomplete system $search_string = 'ragon fire'; // needs to match "dragon fireplace …

marios88marios88 · 2022-12-15

table : query error: P08: syntax error, unexpected $end near ''

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); $ …

zatomantzatomant · 2025-02-26 · 3 · #240

Encoding Issues on getResponse()

bgroubgrou · 2025-05-08 · 3 · #246

@Nick-S-2018 pls help here.

sanikolaevsanikolaev · 2025-04-18

Method to upload a large batch at max speed

Could / should the Manticore PHP client be adapted?

marclaportemarclaporte · 2025-04-04 · 3 · #217

est::NO_ESTIMATE

Encoding Issues on getResponse()

bgroubgrou · 2025-05-08 · 3 · #246

Yes, response data is supposed to be UTF-8 encoded. Unfortunately, encoding detection isn't a 100% reliable method in PHP so we cannot apply it to solve such issues. If you cannot use stripBadtf8 , you have to adapt your client as you actually did. We've …

Nick-S-2018Nick-S-2018 · 2025-05-08

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-SRobert-K-S · 2023-12-09 · 8 · #109

Encoding Issues on getResponse()

bgroubgrou · 2025-05-08 · 3 · #246

Done in https://github.com/manticoresoftware/manticoresearch-php/pull/247

Nick-S-2018Nick-S-2018 · 2025-05-08

Rename "index" to "table" in the docs

sanikolaevsanikolaev · 2025-02-26 · 3 · #237

WIP: Add call qsuggest endpoint support

hlushpenkohlushpenko · 2025-06-23 · 3 · #245

Thanks for the PR @hlushpenko @Nick-S-2018 pls review.

sanikolaevsanikolaev · 2025-04-18

Release 1.8.0

sanikolaevsanikolaev · 2022-01-06 · 0 · #75

WIP: Add call qsuggest endpoint support

hlushpenkohlushpenko · 2025-06-23 · 3 · #245

Blocked by https://github.com/manticoresoftware/manticoresearch/issues/3469

Nick-S-2018Nick-S-2018 · 2025-06-13

Support for PHP 8.4

We need to test the client with PHP 8.4 to make sure everything works fine.

Nick-S-2018Nick-S-2018 · 2025-02-19 · 5 · #228

1👍1

WIP: Add call qsuggest endpoint support

hlushpenkohlushpenko · 2025-06-23 · 3 · #245

Blocked by https://github.com/manticoresoftware/manticoresearch/issues/3469 Unblocked

sanikolaevsanikolaev · 2025-06-23

Fixed test messages

Nick-S-2018Nick-S-2018 · 2025-01-10 · 0 · #230

Issue with umlauts when using the keywords call

ForsakenNGSForsakenNGS · 2021-11-15 · 4 · #59

waiting

The problem is the Utils:;escape function. I don't remember why I picked that solution, but it doesn't work with UTF characters.

adriannutaadriannuta · 2021-07-15

Fix compatibility of ResultSet with php 8.1+

donhardmandonhardman · 2022-08-02 · 5 · #71

waiting for reply

use rt_field directive

ChrisJokinenChrisJokinen · 2021-07-08 · 1 · #58

Manticore has an old limitation that there should be at least one full-text field in the index.

sanikolaevsanikolaev · 2021-07-08

need support for scroll

Manticore Search 7.0.0 supports scroll, but manticosearch-php is not

chongshengdzchongshengdz · 2025-02-06 · 4 · #233

Issue with umlauts when using the keywords call

ForsakenNGSForsakenNGS · 2021-11-15 · 4 · #59

waiting

@ForsakenNGS can you verify that it's now fixed in https://packagist.org/packages/manticoresoftware/manticoresearch-php#dev-master ?

sanikolaevsanikolaev · 2021-07-16

debugging .travis.yml

sanikolaevsanikolaev · 2022-01-06 · 1 · #72

In ResultHit setId and getId Do Not Mirror Each Other

gordonbandersongordonbanderson · 2020-07-09 · 2 · #17

fix #17 id in setId of ResultHit via commit https://github.com/manticoresoftware/manticoresearch-php/commit/55e145b579af4e3fc8d586fe41c1e071e3a8b8a7

githubmanticoregithubmanticore · 2020-07-09

github actions

sanikolaevsanikolaev · 2022-01-06 · 0 · #73

Wrong Runtime Exception Thrown

gordonbandersongordonbanderson · 2020-07-09 · 2 · #19

fix #19 wrong RuntimeException in Connection via commit https://github.com/manticoresoftware/manticoresearch-php/commit/94c40d43d3e17dbf9baae87eb30f9298dca36359

githubmanticoregithubmanticore · 2020-07-09

Fixed scroll pagination handling, updated tests and docs

Nick-S-2018Nick-S-2018 · 2025-02-06 · 0 · #234

Minor Error in Cluster Documentation

gordonbandersongordonbanderson · 2020-07-09 · 2 · #31

fix #31 delete cluster docs via commit https://github.com/manticoresoftware/manticoresearch-php/commit/e2498235ef744cffc5e4c17a6d6f33a2e559d828

githubmanticoregithubmanticore · 2020-07-09

fix cluster test instability

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 …

sanikolaevsanikolaev · 2022-01-07 · 1 · #74

Static Analysis Fixes

gordonbandersongordonbanderson · 2020-07-09 · 3 · #38

Static Analysis Fixes (#38) WIP: Copying Travis details from silverstripe member profiles project WIP: Tested command locally, trying in Travis WIP: Trying a different method of installation for PHPStan MINOR: PHPStan config file FIX: Path to autoload …

githubmanticoregithubmanticore · 2020-07-09

Add JOIN support

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

donhardmandonhardman · 2025-01-09 · 5 · #210

1👍1

est::size_Mrel::upcoming

Next release

versh23versh23 · 2020-07-09 · 1 · #44

Released 1.3. It should be used with 3.4.x. Next release will be after Manticore Search 3.5.0 is out.

adriannutaadriannuta · 2020-07-09

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: ... …

ardabeyazogluardabeyazoglu · 2025-06-27 · 0 · #248

Search: Geo sort docs wrong

KayrimKayrim · 2023-07-24 · 1 · #123

bug

➤ Nick Sergeev commented: Fixed in https://github.com/manticoresoftware/manticoresearch-php/commit/732e6dc202bfb359351241dfda7803ba779fda3c

githubmanticoregithubmanticore · 2023-07-24

1👍1

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-2018Nick-S-2018 · 2025-04-30 · 2 · #243

est::size_M

Filter does not work with bool fields as expected

somesonsomeson · 2023-07-24 · 1 · #122

bug

➤ Nick Sergeev commented: Fixed in https://github.com/manticoresoftware/manticoresearch-php/commit/732e6dc202bfb359351241dfda7803ba779fda3c

githubmanticoregithubmanticore · 2023-07-24

1👍1

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 …

zatomantzatomant · 2025-02-17 · 3 · #235

Undefined array key "took"

Fossil01Fossil01 · 2023-07-24 · 13 · #117

1👍1

bug

➤ Nick Sergeev commented: Fixed in https://github.com/manticoresoftware/manticoresearch-php/commit/732e6dc202bfb359351241dfda7803ba779fda3c

githubmanticoregithubmanticore · 2023-07-24

1👍1

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, …

EvgenyAlyEvgenyAly · 2025-01-08 · 8 · #224

bug

Undefined array key "took"

Fossil01Fossil01 · 2023-07-24 · 13 · #117

1👍1

bug

ResultSet::$response array keys probably may not exist. The problem is, that if at some point you change the backend code and frontend's still running, which causes the bug/feature described above.

somesonsomeson · 2023-07-05