服务器如何为多个用户支持一个应用程序

服务器如何为多个用户支持一个应用程序

问题描述:



我部署在服务器中的数据正在交换两个或更多用户.
所以我想在这里首先要了解的是,由于服务器中只有一个应用程序,因此服务器如何支持许多用户.
如果支持得好,为什么要交换bw用户.
请举一个例子

Hi,

data is swaping bw two or more users as i have deployed in the server.
so first thing i want to know here is Since only one application in the server,how server supports to many users.
If supports well Why this swaping bw users.
Please reply with an example

您的应用程序是否使用缓存?

如果是,则在sessionID的检查下缓存或检索任何用户特定的数据

is your app using Cache?

if yes, then cache or retrieve any of the user specific data under the check of sessionID

HttpContext.Current.Session.SessionID;


数据正在交换两个或两个以上用户"
首先,上述问题是由于代码而不是服务器引起的.检查您的代码.

服务器让IIS一次处理多个应用程序,并完美地响应每个请求.
阅读 [
"data is swaping bw two or more users"
First thing is, above problem is due to code not due to server. check your code.

server is having IIS to dealing many application at a time and response each request perfectly.
read this[^] article, it will focus the concepts.