manticoresoftware / manticoresearch-java

Official Java client for Manticore Search
MIT License
41 stars 5 forks source link

Using Manticoresearch-java client in an Android App #11

Closed AmirDotDev0 closed 1 year ago

AmirDotDev0 commented 1 year ago

Hello, I want to implement search functionality on my app using Manticoresearch but I'm not sure which is the best way, I'm wondering if the Java client can be implemented in an Android app or should I use the JavaScript client in my nodejs API and get the search results from my rest API?

sanikolaev commented 1 year ago

if the Java client can be implemented in an Android app

Even if your Android app can't utilize the Java client, you have the option to directly use the Manticore HTTP JSON API, it shouldn't be much more difficult. Besides, you're already experienced with using a REST API in your app.

AmirDotDev0 commented 1 year ago

Good to know, Thanks for the clarification.