Rabble Rabble Rabble. I needs to shoot me up some dope! Gimme my fix; I cant wait 20 minutes!
Seriously though, this board needs to be overhauled. Where does our 15$ go anyway? Dont companies give presentations every quarter about their earnings and spendings? I really dont know much about business, but I expect to see pie charts damnit.
As has been noted many times here before, the Chicago Reader still is a privately held company, so owes information about its financial state only to those holders. Of which, you and I are most decidedly not.
How do you explain the fact that I’ve had several, yet have had Internet connectivity all day? I have several remote connections open to various datacenters around the US and not a single one has dropped.
Christ, will you shut the fuck up? I’ve had several timeouts here, period. There is nothing wrong with my Internet connection, and there is clear documented history of timeouts on this site from many users. Are they all wrong?
If their timeouts occured all day long, but others have had no timeouts all day long, then, yes, they are all wrong. Q.E.D.
By the way, I didn’t say there was anything wrong with your internet connection. However, congestion on the path between your ISP and the SDMB server could account for the difference in service between users.
If some of us have problems and others do not how can the problem be the Dope? I had no problems at all yesterday or today. How is that possible if the data base is the problem? (and apparently I am not the only one…)
Not slow loading, not timeouts? Are you really this fucking stupid? You are clearly out of your league here. Improperly indexed databases usually lead to both slow loading and eventual timeouts. Oversubscribed databases and underscaled hardware also make a database perform poorly, causing, yes, slow loads and timeouts. Usually page errors are generated due to bad code or bad database calls, and they’re usually immediately displayed (no delay)
Come on, smart guy, show your technical prowess. Impress us. Don’t forget to include things like autonomous systems and routing protocols in your explanation. Since you’re one of the resident know-it-all fucksticks here, I hope you don’t disappoint.
Is that all you have? Come on! I thought you could do better than that. You’re so fucking smart about everything, I figured a quick explanation of how the Internet works would have been a no-fucking-brainer.
You seem like you’re genuinely asking, so I’ll try to genuinely answer.
I’ve seen databases that are so poorly organized that they’ll have several tables just for user accounts. Depending on how those tables are organized (could be by registration date), a good number of users could be affected while the rest are not. Thing that can cause this are table locks (bad code opens tables exclusively for modification, which in turn, locks them for other things to make changes to it). I’m guessing that this database is a total mess and things like this are done.
For example:
tblUsersOriginal (user accounts up to 1/1/2003)
tblUsersNew (user accounts from 1/2/2003 - 1/1/2007)
tblUsersNewer (users accounts from 1/2/2007 - present).
MySQL has funny limitations that may have forced the database admin here to do some quick bandaid work, I don’t know. But doing things like this is bad. So if process A has the third table here locked, the database could be unavailable to that group users, since they are logged into that table (which needs to be updated to render the page).