We want to have an ajax call execute every 100 seconds that requests a boolean value from the database that tells the client side if the user is still authorized to ask questions.
I'm afraid that even though this is a very small amount of data being requested that it might be too much for the database..
Worst case scenerio, 1000 users make this request at the same time. The database max pool size is 1000.
This is an ASP.NET application using Page Methods accessed via javascript callback functions.