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

371 results 14 ms in manticoresoftware/manticoresearch-php

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

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-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

Thanks for the issue @henze-housepedia @Nick-S-2018 pls take a look.

sanikolaevsanikolaev · 2024-10-01

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 · 2024-08-06 · 2 · #210

est::size_M

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

@henze-housepedia , It looks you perform search on your percolate table the same way as on a plain table. Please, see the documentation with correct examples here: https://github.com/manticoresoftware/manticoresearch-php/blob/master/docs/percolate.md

Nick-S-2018Nick-S-2018 · 2024-10-16

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($ …

sanikolaevsanikolaev · 2024-08-21 · 0 · #215

est::size_S

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

oh silly me, why did I made a mistake here. I DID found an error here though, but in two places. What I did was (seemed to me the cleaner way): $client->index('percolated_table')->percolate( ['year'=>2002] ); That gave me the error. This seemed to me the …

henze-housepediahenze-housepedia · 2024-10-16

Request for Transaction Support in manticoresearch-php

Hello, I'd like to inquire if there are any plans to add transaction support to the manticoresearch-php library in the future, considering that transactions are supported according to the official ManticoreSearch documentation (https://manual. …

rostislav-pnrostislav-pn · 2024-05-24 · 4 · #127

waiting for reply

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

Can you please add an example of how you create your percolate table? And what is the exact Manticore version you use?

Nick-S-2018Nick-S-2018 · 2024-10-17

Method to upload a large batch at max speed

Could / should the Manticore PHP client be adapted?

marclaportemarclaporte · 2024-09-24 · 1 · #217

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

table percolated_table { type = percolate path = /var/lib/manticore/percolated_table rt_attr_uint = year } Manticoresearch version 6.3.6 manticoresearch-php version 3.1 I wouldn't report a bug otherwise.

henze-housepediahenze-housepedia · 2024-10-17

Metod match('word word2') generate query type AND

In documentation OR as default operator I try profile()->match('word word2') and i see : [query] => Array ( [type] => AND [description] => AND( AND( AND(KEYWORD(word, querypos=1)), AND(KEYWORD(word2, querypos=2))), OR( AND(KEYWORD(word, querypos=1)), AND( …

MaxplMaxpl · 2021-12-24 · 5 · #70

waiting for reply

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

@henze-housepedia I meant, what the searchd -v command shows, e.g., Manticore 6.2.13 7a631ffcc@24040415 dev Unfortunately, I still cannot reproduce your issue locally. Can you please run the following short script and confirm that it produces the same …

Nick-S-2018Nick-S-2018 · 2024-10-21

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' ]; …

githubmanticoregithubmanticore · 2023-11-25 · 2 · #39

Is it time for a new release?

marclaportemarclaporte · 2024-10-31 · 2 · #219

@Nick-S-2018 Please review the commits and determine if we can release any new features or bug fixes that are not related to the changes in the daemon (which will be released after the new daemon version is available).

sanikolaevsanikolaev · 2024-10-16

1👍1

Methods needed for moving from sphinxsearch to Manticore PHP API

Hello! I'm moving from sphinxsearch and can't find several features at php api for manticore. Try to make samples with sphinx 2.0 php code. SetGroupBy method for grouping results. as far as I understand, this feature is present in manticore and maybe this …

mikedinmikedin · 2021-08-31 · 3 · #60

waiting for reply

Is it time for a new release?

marclaportemarclaporte · 2024-10-31 · 2 · #219

Published: https://github.com/manticoresoftware/manticoresearch-php/releases/tag/3.2.0

Nick-S-2018Nick-S-2018 · 2024-10-31

Add a method to get total facets count

The library doesn't have a method to get total count of facets. Here is the code example, imagine an index jobs with columns employer_id and employer_name : $client = new \Manticoresearch\Client(); $index = $client->index('jobs'); $query = new \ …

markomilivojevicmarkomilivojevic · 2021-11-19 · 4 · #67

waiting for reply

Adds method to unset last response in Client

acya-skulskayaacya-skulskaya · 2024-11-05 · 3 · #221

Thanks for the PR @acya-skulskaya Can you please improve it, so it passes the tests?

sanikolaevsanikolaev · 2024-10-31

Can i use setMachRanking?

Hello Devs Can i use Ranking for this module? Can i use Weight for field's? in documentation not found information

skvarovskiskvarovski · 2021-12-06 · 15 · #42

Adds method to unset last response in Client

acya-skulskayaacya-skulskaya · 2024-11-05 · 3 · #221

Thanks for the PR @acya-skulskaya Can you please improve it, so it passes the tests? Hi, sorry I didn't have time yesterday to finish fixing the tests. But the issue with failing tests doesn't seem to be connected with my changes? First it was showing …

acya-skulskayaacya-skulskaya · 2024-10-31

Unnecessary line in class Create

Method "setBody" of class "Create" has unnecessary line # 37 (of origin file /phpClient/vendor/manticoresoftware/manticoresearch-php/src/Manticoresearch/Endpoints/Indices/Create.php). See comment inside code: public function setBody($params = null) { if ( …

oam333oam333 · 2021-11-24 · 1 · #68

waiting for reply

Adds method to unset last response in Client

acya-skulskayaacya-skulskaya · 2024-11-05 · 3 · #221

@Nick-S-2018 pls review the PR and help with the failing tests.

sanikolaevsanikolaev · 2024-11-01

Return distance when sorting by _geo_distance

would be awesome if we could include the distance value with the search result. I know this can be done with SQL but would be great if we could add it to the result. Similar to how we add score with $search->trackScores(true) Something like $search-> …

KayrimKayrim · 2023-08-22 · 1 · #132

waiting

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

Aggregation functions support

Read all client documents. Looked at the implementation of "facet" in the code. Am I right in thinking that there is no such functionality? For example "MIN" or "MAX"? It after all as not simply to create sql. Worry about escaping field names or something …

genby8genby8 · 2023-04-26 · 4 · #119

enhancement

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

Docs: $search->filter() method takes 'in' operator

Perhaps list the in operator here, used for MVA attributes (took me some time and failed tests to dig it up).

milanmadarmilanmadar · 2022-03-07 · 2 · #63

1👍1

Method to upload a large batch at max speed

marclaportemarclaporte · 2024-09-24 · 1 · #217

Hi @marclaporte disable binlog This has been mitigated here https://github.com/manticoresoftware/manticoresearch/issues/879 write to multiple tables at once This will be resolved once auto-sharding is completed: https://github.com/manticoresoftware/ …

sanikolaevsanikolaev · 2024-09-24

1👍1

suggest не работает

$config = ['host'=>'manticore','port'=>9308] $client = new Client($config); $suggest = $client->index('suggest'); $suggest->create([ 'explanation' => [ 'type' => 'text', ], ], [ 'min_infix_len' => 1, 'dict' => 'keywords', ]); $suggest->addDocument([ ' …

hrustbb2hrustbb2 · 2022-07-12 · 1 · #65

bugwaiting for reply

Exception - column 'id' specified twice

rim89rim89 · 2024-10-18 · 1 · #220

Yes, this is a correct behavior. Specifying document ids inside doc data objects is not supported for AddDocument , so you must pass it as a separate argument.

Nick-S-2018Nick-S-2018 · 2024-10-18

1👍1

percolate feature: invalid percolate operation '_search', should be one of 'search' or 'doc' or '_delete_by_query'

henze-housepediahenze-housepedia · 2024-10-29 · 6 · #218

waiting

table percolated_table { type = percolate path = /var/lib/manticore/percolated_table rt_attr_uint = year } Manticoresearch version 6.3.6 manticoresearch-php version 3.1 I wouldn't report a bug otherwise.

henzebhenzeb · 2024-10-17

Add JOIN support

donhardmandonhardman · 2024-08-06 · 2 · #210

est::size_M

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

donhardmandonhardman · 2024-05-21

Add JOIN support

donhardmandonhardman · 2024-08-06 · 2 · #210

est::size_M

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

sanikolaevsanikolaev · 2024-08-06

getDocumentByIds doees not work: "self" in callables is deprecated

donhardmandonhardman · 2024-04-26 · 3 · #170

bugest::size_S

This should be fixed in https://github.com/manticoresoftware/manticoresearch-php/pull/172

donhardmandonhardman · 2023-12-05

getDocumentByIds doees not work: "self" in callables is deprecated

donhardmandonhardman · 2024-04-26 · 3 · #170

bugest::size_S

We need to update the readme correspondingly.

sanikolaevsanikolaev · 2023-12-05