I wrote a class that builds some url in a page every time there is a client request to the server. In a hypothetical scenario in which 100 clients, at the same time, require a server connection, it should produce 100 instances of that class, right? So I would like to know what would be the result of many instances at the same time on the page and if this is a good practice to solve my problem with the "url generator". ThanksI wrote a class that builds some url in a page