Tagged Questions

2
votes
2answers
108 views

If HTTP is stateless why do I need to close a database connection?

A commonly problem I see in lots of web languages is that database connections need to be closed otherwise the number of total connections gradually increases and then it grinds to a halt in whatever ...
1
vote
3answers
109 views

Should I use a separate table to store online users or should I just use additional fields in the extant members table?

I'm working on an online system that allows users to interact socially and of course it will be important to be able to identify users that are in fact online. I know about HTTP being stateless and I ...