You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Description
All the functions that create or update documents should send jsonlines instead of a JSON array.
Why
That's faster to process by meilisearch and consumes less memory.
How
Currently, the issue is that when we send a POST or PUT request in the SDK, it's automatically flagged as JSON.
We need to update our internal to support JSON for the settings and jsonlines for the documents.
The text was updated successfully, but these errors were encountered:
Hey @matthias-wright, yes thanks for your interest, this hasn't been implemented.
Meilisearch can handle jsonlines IF you set the good content-type and only on the POST and PUT route 👍
Description
All the functions that create or update documents should send jsonlines instead of a JSON array.
Why
That's faster to process by meilisearch and consumes less memory.
How
Currently, the issue is that when we send a POST or PUT request in the SDK, it's automatically flagged as JSON.
We need to update our internal to support JSON for the settings and jsonlines for the documents.
The text was updated successfully, but these errors were encountered: