SAP系统三层架构

SAP系统三层架构:表示层,应用层,数据库层

 

表示层:也可以说个人用户client。由表示层提出数据请求,然后应用层对请求进行处理,再通过数据库层DBMS系统对数据进行处理。

 

从应用服务器的缓冲区读取数据的时间为0.1ms/记录,从数据库服务器的缓冲区中读取数据时间为1ms/记录,直接从数据库服务器的文件系统(磁盘)中读取数据时间为10ms/记录

 

WP(work process)要自身占用5MB的空间,应用服务器的Buffer占用大约120MB(40MB为单记录buffer,80MB为一般buffer),数据库服务器中的DB buffer要占用至少500MB的空间。

 

表示层和应用层之间的数据传输率为2-3K/块。应用服务器和数据库服务器之间是32K

posted @ 2013-10-21 10:43  RstarYan  阅读(366)  评论(0编辑  收藏  举报
$(function(){ $('#blogTitle h1').addClass('bounceInLeft animated'); $('#blogTitle h2').addClass('bounceInRight animated'); // 删除反对按钮 $('.buryit').remove(); initCommentData(); }); function initCommentData() { $('.feedbackItem').each(function() { var text = $(this).find('.feedbackListSubtitle .layer').text(); // 将楼层信息放到data里面 // $(this).find('.blog_comment_body').attr('data-louceng', text.replace(/^#/g, '')); if($(this).find('.feedbackListSubtitle .louzhu').length>0) $(this).addClass('myself'); var avatar = $(this).find('> .feedbackCon > span').html() || 'https://pic.cnblogs.com/face/sample_face.gif'; $(this).find('> .feedbackCon > .blog_comment_body').append('') }); } $(document).ajaxComplete(function(event, xhr, settings) { // 监听获取评论ajax事件 if(settings.url.indexOf('/mvc/blog/GetComments.aspx') >= 0) { initCommentData(); } });