Skip to content

v0.23.0 πŸ’Ž

Compare
Choose a tag to compare
@meili-bot meili-bot released this 03 Apr 12:40
· 217 commits to refs/heads/main since this release
40c6a1f

This version introduces features released on Meilisearch v1.1.0 πŸŽ‰
Check out the changelog of Meilisearch v1.1.0 for more information on the changes.
If you want to adopt new features of this release, update the Meilisearch server to the according version.

πŸš€ Enhancements

  • Add a new optional argument to add_documents_csv. This argument allows you to customize the separator character in your csv file. (#429) @brunoocasali.

  • Add client.multi_search() method to execute multiple search requests simultaneously with different configurations. (#430) @brunoocasali
    Usage example:

    client.multi_search([
      { index_uid: 'books', q: 'prince' },
      { index_uid: 'movies', q: 'prince' },
    ])

    ⚠️ The SearchQuery was not meant to be used if the regular $index->search() requests (yet).

Thanks again to @brunoocasali! πŸŽ‰