Great project!
I use FastAPI for the front-end of a web service, and am investigating using Ray to manage some back-end computation. Option 1 would be to use ray.serve in the documented way (create_backend, create_endpoint, get_handle, handle.remote). But there is also an Option 2 where we just call a ray.remote object directly, as in:
@ray.remote
def hello(name:str):
return f"Hello {name}"
@app.get("/hello")
async def hello_ep(name:str):
return await hello.remote(name)
Could you outline the pros and cons of the two options please?