Reputation: 116
Will there be any problem if my website is being visited by more then one person simultaneously...? If the answer is yes, can you say how can i overcome that?
Do I have to incorporate the session? Will that alone work? Please explain with a small example.
Upvotes: 0
Views: 130
Reputation: 812
Session are not necessarly needed BUT you should really keep in mind that you data can be read and modified by multiple users in concurrency. Look at ACID definition for the engineering part of it :)
Upvotes: 0
Reputation: 449395
There will generally be no problem. A normal PHP/Apache server setup is designed to handle multiple requests at once. Sessions are always on a per-client basis.
For more specific info, you would have to provide more information about your setup, but if you're just starting out building a web site, it is safe to say that you don't need to worry about this for the time being.
Upvotes: 0
Reputation: 8223
Going off the lack of information:
Your website will not have any problems if multiple people visit at the same time. More than likely, the software you are using is built specifically for this purpose.
Upvotes: 4