typesense-java
typesense-java copied to clipboard
Java client for Typesense
## Change Summary ## PR Checklist - [x] I have read and signed the [Contributor License Agreement](https://forms.gle/PZyiY5N2GDQU8GsV9).
## Description According to the [documentation](https://typesense.org/docs/latest/api/documents.html#returning-the-id-of-the-imported-documents) it's possible to configure the import response to return the ingested document's id in the response. To achieve this you can use the `return_id`...
## Description Drop collection does not seem to completely remove the collection. ## Steps to reproduce CollectionResponse[] collectionResponses = client.getTypesenseClient().collections().retrieve(); for (CollectionResponse c : collectionResponses) { client.getTypesenseClient().collections(c.getName()).delete(); } Collection collection...
## Description 1. As development goes, uniform coding style plays big role in maintenance. 3. Automated checks on code coverage ## Steps to reproduce ## Expected Behavior 1. Having a...
## Description https://typesense.org/docs/0.23.0/api/federated-multi-search.html#multi-search-parameters It does not seem like the library supports multi-search / feterated. Is this a planned feature?
## Description While [configuring Typesense to use Vertex AI](https://typesense.org/docs/0.25.0/api/vector-search.html#using-gcp-vertex-ai-api) it seems the property `refreshToken` is missing on `FieldEmbedModelConfig` class, so we cannot setup properly it, so it cannot connect to...
## Description When trying to instantiate a Typesense Client, I get a NoClassDefFoundError ## Steps to reproduce I have added the following to my pom.xml: ``` org.typesense typesense-java 0.9.0 ```...
## Description Found that there is some scenario where the Java client does not updates the node status. We have a cluster of 3 nodes running typesense-server that are consumed...
## Description I have 3 levels of categories for search, it works fine for all the categories but for a specific category its not returning result at all. If I...
## Description Getting following exception and app crashes as well. Fatal Exception: java.net.SocketTimeoutException failed to connect to search.bazaarghar.com/167.88.174.168 (port 443) from /192.168.1.3 (port 39918) after 2000ms ## Expected Behavior If...