Hi all,
I have a requirement where I am planning to run a background process. Once user logs in into application, I need to have two processes done. 1. authenticate user and go to homepage 2. Get some data and put it in session.
If I do both at same time its going to take 10 minutes to get to homepage. Instead I want second process to run in background while authentication is being processed.
I don't need data from second process in homepage. I need it in some other page which i could access from session.
Can someone put me in right direction?
Thanks