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
0 answers

Importing into meilisearch from mongodb using laravel scout takes too long

I have around 6 million rows in my mongodb collection and importing into meilisearch using php artisan scout:import 'model' takes forever to finish. Importing data with limit option php artisan scout:import 'model' -c 10000 gives me the following…
0
votes
1 answer

Meilisearch user specific filtering

I have three tables like users, articles and user_article. The users table is self-explanatory. In articles i have a lots of entries, e.g. 20k. In user_article i have entries which article a user has. If a user goes to the search page he should have…
Loko
  • 185
  • 3
  • 12
0
votes
1 answer

Filter by datetime in Meilisearch

In the documentation: https://docs.meilisearch.com/reference/features/filtering.html Meilisearch compares dates like this: title = Scream OR title = "The Avengers" AND release_date > 795484800 however the column I want to compare is using datetime,…
Felix
  • 2,532
  • 5
  • 37
  • 75
0
votes
3 answers

Laravel Scout/Meilisearch - filter by a non-searchable column

I want to make it so that I can filter results based on a column that isn't searchable with Meilisearch and Laravel scout. So imagine a "Comment" table, with the following searchable columns: public function toSearchableArray() { $array =…
Felix
  • 2,532
  • 5
  • 37
  • 75
0
votes
1 answer

time-out between laravel app and meilisearch server

I have two apps both hosted on DO through Laravel Forge and both in the same region. One hosts my application, the other is a dedicated Meilisearch server. Both are in each other's server network. I've got the correct Meilisearh credentials in my…
jrmypttrsn
  • 41
  • 1
  • 6
0
votes
1 answer

MeiliSearch — change the limit of 20 documents

I'm new to MeiliSearch and trying to set up a simple demo. It is very similar to this official demo. I'm wondering how could I change the default limit of 20 documents in the app?
ytrewq
  • 59
  • 1
  • 10
0
votes
1 answer

Trying to install meilisearch gives access denied error at

When installing meilisearch using pip, using the following command: pip3 install meilisearch gives the following error: bash: /c/Users/NASA/AppData/Local/Programs/Python/Python39/Scripts/pip3: Permission denied How can it be solved?
0
votes
1 answer

Price (Numeric value) is not setting in facet Meilisearch

I have rangeInput field, which has Min and Max input, where user can add price to search, I have below code for price search. customRangeInput({ container: document.querySelector('#range-input'), attribute: 'price', }), and I am adding as…
sanj
  • 1
  • 2
0
votes
1 answer

Is this the right time to use a solution like meilisearch?

I am caught up in a situation where I need to index like seven columns used for search and filtering on a table, but this is obviously going to hurt the performance for inserts, updates and deletes when dataset on the table grows(and its going to).…
yhiamdan
  • 113
  • 1
  • 7
0
votes
1 answer

Can't perform facet count, as no facet is set Meilisearch

I am trying to do refinement in meilisearch. const search = instantsearch({ indexName: "books", searchClient: instantMeiliSearch( "https://example.com", "XXXXXXXXXXX", ), searchParameters: { …
sanj
  • 1
  • 2
0
votes
0 answers

InstantSearch.js custom widget increase returned results

As you can see in the code bellow, I made 2 custom widgets, one for searching one for displaying results, but I cannot increase the limit of the returned results. When the page loads, it automatically makes a request and retrieves the default…
Denis
  • 120
  • 7
0
votes
1 answer

Meilisearch Invalid JSON: expected value at line 1 column 1

I'm trying to load data into Meilisearch via CURL but keep getting the error: Invalid JSON: expected value at line 1 column 1 I have run the JSON through a validator and the data pass so I decided to download the sample data from Meilisearch to…
Mark
  • 151
  • 1
  • 1
  • 13
0
votes
1 answer

Laravel Scout and MeiliSearch integration in Laradock

I'm trying to integrate MeiliSearch in my Laravel project using their official package for Laravel scout. Am using Laradock as a development environment and it has a pre-installed Meilisearch docker image. I couldn't find anything that explains how…
kenean50
  • 518
  • 5
  • 13
0
votes
0 answers

How to manually install dependencies for a PHP project?

I know that I should be using Composer. I've not ventured there just yet. I want to try Meilisearch Search service, and they have a PHP SDK. According to the docs of the PHP SDK: To get started, simply require the project using Composer. You…
Rosamunda
  • 14,620
  • 10
  • 40
  • 70
-2
votes
0 answers

Cannot run meilisearch after system upgrade

Upgraded Ubuntu from 18.04 to 20.04 (Mysql from 5.7 to 8.0) Service status says: Error: Version file is corrupted and thus Meilisearch is unable to determine the version of the database. Tried to run meiliserarch as a system service after upgrade,…