I have a an existing index of lucene index files and the java code to perform search functions on it.
What I would like to do is perform the same thing on a server so users of an app could simply pass a query that will be taken as an input parameter by the java program and run it against the existing index to return the document in which it occurs.
All the implementation has been tested on my local pc,but what I need to do is implement it in an Android app.
So far I have read around and concluded that porting the code in AWS lambda and using S3 to store the files and calling the s3 objects from lambda.
Is this the right approach?Any resources that point to the this approach or alternative suggestions are also appreciated.
Thanks in advance.