nohup dotnet /www/wwwroot/xxx.dll --urls "http://*:6001;http://*:6002" &
此时候的6001和6002端口对应的程序的内存和static变量都是存在同一个堆栈里面,可以做缓存。
nohup dotnet /www/wwwroot/xxx.dll --urls "http://*:6001" &
nohup dotnet /www/wwwroot/xxx.dll --urls "http://*:6002" &
此时运行则会产生2个不同进程的程序,那么内存和其他static公用的变量则为分开运行,不能做缓存。
标签:core,wwwroot,http,Centos,xxx,www,dll,6002,net From: https://www.cnblogs.com/IBPM/p/17137238.html