'Does Weaviate support bulk query?

Data is indexed against a class in weaviate, I have used vectorizer equals none while creating the class (As the app is providing embeddings). My query is, is there a way I can perform bulk query. Example: I need to search for 15 inputs, instead of looping over and querying 15 times, is there a way this can be done in one-shot?



Solution 1:[1]

You can use batching: https://weaviate.io/developers/weaviate/current/restful-api-references/batch.html.

If you're using the Python client, see these docs: https://weaviate-python-client.readthedocs.io/en/latest/weaviate.batch.html#weaviate.batch.Batch.

Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source
Solution 1 Dharman