I'm looking for an answer considering both technical limitations and user experience.

Does it need a reload from a technical standpoint?

share|improve this question
1  
See also balpha's answer here. – Popular Demand May 28 '12 at 19:49

3 Answers

up vote 24 down vote accepted

Sort of, yes.

Global login uses HTML5 localStorage (under the stackauth.com domain) to work around cookies not being available*. As a consequence, this means that we can't recognize a user at page render time; we have to wait for a non-trivial amount of javascript to load and execute.

Once global login has finished, we've got the user information... but the user could already be interacting with the page; a hard refresh would be really unpleasant. We actually tried this in the very early days of the global log system; if you've got a really speedy connection** it's ok, but any sort of latency results in a UX that makes you want to punch your screen.

The one exception to this rule, where we do in fact automatically navigate away, is when a user is on the login page. Presumably all the user wants to do is login there, so global login completing is a strong signal to navigate away from the page.

*We can't attach a cookie on askubuntu.com from stackoverflow.com, nor can we access stackoverflow.com's cookies from askubuntu.com; as an example. This is the crux of the issue. We used localStorage instead of third-party cookies (which would impose the same constraints, but be simpler to implement) because Safari has really dodgy support for third-party cookies.

**Remember, a solid 1/2 of our user base is on a different continent than our data center. We work hard to make our code fast, but we can't do much about the speed of light.

share|improve this answer
Great answer for very non trivial issue.. added to favorites for future reference. :) – Sha Wiz Dow Ard Feb 14 '12 at 7:15
6  
"we can't do much about the speed of light." Slackers. – Adam Davis Feb 14 '12 at 7:39
Can you explain what you mean by "to work around cookies not being available"? – Adam Lynch Feb 14 '12 at 12:33
Can you also explain, how can you save localStorage cross-domain? I thought localStorage is limited to one domain, as well as cookies are. – Karel Bílek Feb 25 at 2:26

According to balpha's answer at Why does it says welcome back -user- click here to "refresh page" it is not a technical issue, rather it's because you may already be reading a post. If that was the case, an automatic refresh would be annoying.

share|improve this answer
3  
Certainly not enough reason to inconvenience all those who may NOT be reading a post. – Kris Feb 14 '12 at 4:26
I login in to multiple sites sequentially. The login process up to the point where I reach 'new questions' is tedious enough, and with its repetition for all the sites, well you can imagine. – Kris Feb 14 '12 at 4:28

Does it need a reload from a technical standpoint?

Kevin explains why it's this way now.

If they wanted to make it so that a reload was not required, they would have to change a lot of data that's currently static based on the cookie to dynamic (AJAX/javascript/jquery/whatever) loading.

So it's possible to change the system so that a reload is not necessary.

However, it causes a substantial penalty in page loading time. Right now a lot of page data is static, but if everything were dynamically loaded you'd have to wait some time for the javascript to load and run, communicate with the authentication servers, and then communicate with the original server again prior to letting the browser render the page.

You could do a hybrid, where it loads the static content, then replaces it once it's received new info, but that may result in the same symptom - the page appears to reload while you're reading/scrolling/etc.

So yes, it's possible, but it's not practical from a performance standpoint.

share|improve this answer

You must log in to answer this question.

Not the answer you're looking for? Browse other questions tagged