I have a laravel application gets a key from redis, and it it doesn't exist gets the data from the databse, puts that data in the cache, and then returns to the user.
I'd like to be able to return the data to the user first, then keep processing the cache server side, rather than waiting for the cache before returning.
Is there a name for this? How would I go about doing this on a standard laravel installation?