Questions tagged [meilisearch]

Questions related to Meilisearch search engine by meilisearch.com

Meilisearch is an opensource REST based, self-hostable search engine software.

From the documentation

MeiliSearch is a RESTful search API. It aims to be a ready-to-go solution for everyone who wants a fast and relevant search experience for their end-users.

Meilisearch is built using .

Official clients are available , , , , , , and other languages.

Few framework related packages are available too.

Links

91 questions
1
vote
1 answer

Updating model data in the meilisearch index when editing this model's links

Input data regarding the database: The product table has 4 million positions; Adjacent tables, which will be relations for the product model, have an average of 1 to 4 million records respectively, which will total 10-15 million records…
1
vote
1 answer

Laravel Scout with Meilisearch filtering not working with >, >=, <, and <= operators

I am trying to implement Meilisearch on my Laravel application. for some reason I'm not able to filter decimal fields (price, mrp etc..) using >, >=, <, and <= operators as explained on Meilisearch Documentation. …
Subham Manna
  • 103
  • 1
  • 12
1
vote
0 answers

How do I search related attributes in Laravel Scout?

I'm playing around with Scout and MeiliSearch in Laravel 8 and struggling a little with searching related attributes. I have an adverts table, an attributes table (e.g. colour, size, etc.) and an attribute_options table (e.g. black, blue, yellow,…
remoteboy
  • 11
  • 1
1
vote
0 answers

Context index generation for meilisearch

I've been using all sorts of hacks to generate file indexes out of SMB shares. And it's all cool with basic filepath plus metadata indexing. The next step I want to implement is an algorithm combining some unix-like utilities and php, to index…
1
vote
1 answer

Meilisearch index not being created

I have been using Meilisearch for a couple of months and have recently upgraded to 0.26.0. For some reason, when I am today trying to create an index using the node package, nothing seems to happen. I can successfully use the createIndex method like…
Emile Paffard-Wray
  • 1,006
  • 2
  • 9
  • 17
1
vote
0 answers

How To Concat search in laravel scout (meilisearch)

in laravel code Model::where(DB::raw('CONCAT(name, " " ,surname)'), 'like', '%'.$request->input('search').'%') how to use in laravel scout meilisearch
dickhorror
  • 11
  • 1
1
vote
1 answer

Laravel Scout issue with relationship

Using Laravel scout I want to delete a record (on an Agent model), everything works well except that I'm redirecting to a list of agents after the delete, and since the queue is yet to be processed the deleted agent comes back from Meilisearch, but…
Jeremy Belolo
  • 4,319
  • 6
  • 44
  • 88
1
vote
1 answer

Search for a term on multiple models/Indexes

Description I have just migrated our application from searchkick to meilisearch however meilisearch doesn't have a way I can search for single term across multiple indexes or models like searchkick does. Basic example I want to to be able to search…
Kofi Asare
  • 97
  • 1
  • 5
1
vote
1 answer

Search all words in Meilisearch / Laravel Scout

I'm using Laravel Scout with Meilisearch for typeahead searching of a list of titles. I am also using it to match duplicates with different spellings. The issue I have is that Meilisearch brings up results that match any word. For example typing the…
Dan
  • 115
  • 1
  • 8
1
vote
1 answer

MeilieSearch Error On Shared Hosting (CentOS - Red Hat) (/lib64/libc.so.6: version `GLIBC_2.18' not found)

I'm unable to setup MeilieSearch on a Shared Hosting (I'm not root). Error I get: ./meilisearch: /lib64/libc.so.6: version `GLIBC_2.18' not found (required by ./meilisearch) I think the issue is with a library (GLIBC_2.18), after some research I…
Subham Manna
  • 103
  • 1
  • 12
1
vote
0 answers

Laravel Scout/Meilisearch error when using filters/where clause

When I try to use a where clause after the search method I get this: Error That's my Product model: Product model I've tried two methods to get the products of a specific store_id: This one and this one (sorry for not using the code formatting I'm…
1
vote
1 answer

Search component showing last result when input field is cleared using backspace

So I'm using Next.js and built a basic search page with input and storing the results after the query on a state array. The problem is when I clear the input field fast using backspace, it shows the result from the last keyword. I believe I'm using…
Shoaib Ahmed
  • 101
  • 8
1
vote
1 answer

Meilisearch error when I use where() statement to filter results is returned by meilisearch

I am using Meilisearch as driver for laravel scout. My codes in controller: public function search(SearchInArticlesRequest $request) { $query = $request->s; $articles = Article::search($query) …
farhad.a
  • 341
  • 4
  • 17
1
vote
1 answer

Driver [meilisearch] not supported

I am trying to set up Meilisearch with laravel/Scout in my laravel project. "laravel/framework": "^7.0", "laravel/scout": "^8.1", "meilisearch/meilisearch-php": "^0.18.2", According to the laravel documentation this package is supported but I got…
Tomas Lucena
  • 1,204
  • 1
  • 14
  • 31
1
vote
0 answers

I am facing issue with the meilisearch autocomplete features

I have used docsSearchBar for the autocomplete but facing this issues "Uncaught (in promise) Error: [groupBy]: Object has no key lvl0". So, anyone please help me out.