I want the following:
def start_job_and_return_string():
start_job() #takes a while
return "job started"
by calling start_job_and_return_string
I want to instantly get a string back. Later on the job will dump its results into the filesystem.
How can I accomplish this?