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
0
votes
1 answer

Laravel Scout check if index exists

I can't find documentation on how to check with Laravel Scout if an index exists or not. I'm using it with meilisearch. My models have the Searchable trait. This is how I want to access the index and check for search results: $tasks = Task::search( …
Fabian
  • 1,806
  • 5
  • 25
  • 40
0
votes
0 answers

Laravel Forge meilisearch integrating - production.ERROR: cURL error 7: Failed to connect to 146.190.87.214 port 7700: Connection refused

I am getting this error when I try to integrate meilisearch on laravel forge. I have 2 servers, one for the app and the other one is for the meilisearch. on laravel forge, on networking tab, I have ticked "can connect to" also. production.ERROR:…
Josh
  • 1
  • 1
0
votes
0 answers

Angular InstantSearch refresh cache service

I'm working with Meilisearch and using it with Angular InstantSearch v4.3.2, and I'm having trouble refreshing my search client cache. My app will have a lot of CRUD user actions that will modify the data in my search index, and I need to update the…
0
votes
1 answer

Laravel/Meilisearch - Did you forget to add \"http(s)://\"?

I'm currently trying to get my website up and running with Laravel Forge. And while everything works fine on my local, I've run into an error on my production website. Just about any POST request I try using models that have the "Searchable" trait…
Felix
  • 2,532
  • 5
  • 37
  • 75
0
votes
0 answers

Meilisearch API Key not accepted in Test (Jest) works fine in nestjs

I tried to test my function and only with the test I get: { "code": "invalid_api_key", "httpStatus": 403, "link": "https://docs.meilisearch.com/errors#invalid_api_key", "name": "MeiliSearchApiError", "type": "auth" } same settings in the nestjs…
WebPirat
  • 1
  • 1
0
votes
0 answers

Scout Import Meilisearch with UUID doesn't import records

My blog table has the following structure Schema::create('blogs', function (Blueprint $table) { $table->uuid('id')->primary(); And my scout is configured with Meilisearch as driver. When I issue the import command php artisan scout:import…
0
votes
1 answer

Laravel Homestead - Setting Meilisearch to a previous version

I recently installed the app I've been working on on a different machine. This machine is now using a newer version of homestead, which consequently forces me to use a newer version of Meilisearch. So if I type in this command, for…
Felix
  • 2,532
  • 5
  • 37
  • 75
0
votes
1 answer

Instantsearch not working with React - Data not displaying

I have my instantsearch which is working perfectly fine when i run it as is as shown below However, when I tried to integrate it wit router dom, it seems something on the router dom is causing my instantsearch results to not be rendered. my instant…
Adam
  • 1,157
  • 6
  • 19
  • 40
0
votes
1 answer

Security API in meilisearch

I want to know if it is completly neccesary to use a security KEY in meilisearch. I´m building an app in laravel, its like a blog, where I have the users and the posts with its comments. My searcher its similar to the stack overflow, where we can…
0
votes
1 answer

Meilisearch - what's the differences & relationship among: searchableAttributes, filterableAttributes, faceting

searchableAttributes, filterableAttributes, faceting. I've read the documents, but a bit confused. Please give some insights about: Their differences. Their relationships.
Eric
  • 22,183
  • 20
  • 145
  • 196
0
votes
0 answers

OOM ( Out Of Memory) error in docker getmeili/meilisearch:latest

Why does Meilisearch service down after few seconds ? Giving error 137 (out of memory - docker doc.) Inside meili data.ms have 44.000 item and one index. This is content for meilisearch service : meilisearch: container_name:…
Tural Rzaxanov
  • 783
  • 1
  • 7
  • 16
0
votes
0 answers

Is it possible to use Meilisearch for making searches, that is currently done in MySql through joining different tables?

For example is Meilisearch is capable to make the same query as the one with joining different tables like: ->leftJoin('clients as c', 'n.ufid', '=', 'c.id') ->leftJoin('partners', 'n.partnerid', '=',…
Tamás László
  • 139
  • 1
  • 8
0
votes
1 answer

Instant Meilisearch React: How do I hide data before user input?

I am using Meilisearch Instant to show search results. I want to show only search results when user type in something in searchbox. However, if I follow documentation the page shows all data even before searching anything. How do I hide data and…
Tabim
  • 1
  • 3
0
votes
1 answer

Indexing Strapi Dynamic Zones with Meilisearch plugin

I have a Strapi content type called portfolio, which has this Dynamic Zone: "body": { "type": "dynamiczone", "components": [ … "body.content-block-list", … ], "required": true } The body.content-block-list…
Rich
  • 3,095
  • 17
  • 17
0
votes
1 answer

Meilisearch API key uid not showing up when calling getKey()

I'm currently using Meilisearch and I need to get the uid of an API key that I am using. I'm calling their getKey() method with an API key to get information about this key, but I notice that there is no uid field in the response, despite seeing…
CodeMaster12
  • 3
  • 1
  • 2