请问这个论坛是什么架构哦,访问量大速度这么快

解决方案 »

  1.   

    我是说web架构和服务器架构哦,比如说用什么web服务器软件,什么系统
      

  2.   

    我只能看到这些信息HTTP/1.1 200 OK
    Server: nginx/0.7.65
    Date: Sat, 25 Sep 2010 04:48:15 GMT
    Content-Type: text/html; charset=utf-8
    Connection: keep-alive
    X-UA-Compatible: IE=EmulateIE7
    X-Powered-By: ASP.NET
    X-AspNet-Version: 2.0.50727
    Cache-Control: private
    Content-Length: 502
      

  3.   

    nginx,这个应该很清楚了,高并发量适合用的反向代理服务器!做PHP的肯定很多人知道的吧,饿国人发明的,最高并发支持5万人!
      

  4.   

    敢问你这个信息怎么来的,TCP抓包工具?还是。。?
      

  5.   

    curl 命令  > curl --head http://topic.csdn.net
      

  6.   

    $url = 'http://topic.csdn.net';
    print_r(get_headers($url));Array
    (
        [0] => HTTP/1.1 301 Moved Permanently
        [1] => Server: nginx/0.7.65
        [2] => Date: Sat, 25 Sep 2010 07:08:39 GMT
        [3] => Content-Type: text/html
        [4] => Connection: close
        [5] => Content-Length: 149
        [6] => Location: http://community.csdn.net/
        [7] => X-UA-Compatible: IE=EmulateIE7
        [8] => X-Powered-By: ASP.NET
        [9] => HTTP/1.1 200 OK
        [10] => Server: nginx/0.7.65
        [11] => Date: Sat, 25 Sep 2010 07:08:39 GMT
        [12] => Content-Type: text/html; charset=utf-8
        [13] => Connection: close
        [14] => X-UA-Compatible: IE=EmulateIE7
        [15] => X-Powered-By: ASP.NET
        [16] => X-AspNet-Version: 2.0.50727
        [17] => Cache-Control: private
        [18] => Content-Length: 502
    )
      

  7.   

    估计是PHP的
    PHP,缓存优化 并且用了动态转静态页的技术
      

  8.   

    X-Powered-By: ASP.NET
    x运行在asp.net的环境下  难道php还运行在asp.net环境中?? 
      

  9.   

    缓存,静态化,负载均衡,数据库切片技术,优秀的数据表结构设计,优秀的程序资源使用方案,以及庞大的服务器集群管理等等一系列起到的作用。这些技术里面要根据你的业务逻辑去具体取舍,去协调配合,没有思维定势。需要丰富的经验和不断的摸索。其实想探讨架构你不如去了解下facebook。他用到的那一系列技术才叫人大开眼界。
      

  10.   

    访问量大,但是速度快,有以下几个原因:1。服务器配置好。高性能CPU,高容量内存。带宽独享
    2。程序写得好,使得访问速度很快
    3。程序和数据库分配得好。