English 中文(简体)
在设计可扩展的网络结构时,会考虑什么。
原标题:What consideration would one take when designing a scalable web architecture

我知道,必须研究数据库的询问,因为当数据库是小的查询时,这不是一个问题。 但是,如果越大,网站就会放慢。

最佳回答

在此,我想谈一下......。

<>健康数据:

  • Returning as small a dataset as possible. This includes row counts & columns. For example, no select * from table....
  • Data caching strategies

<><>

  • File Caching.... AKA - HTML, images, javascript....
  • Put JS at the bottom after DOM loads. Increases speed of page load.
  • Put CSS at top.
  • Session State - be careful with it s usage...
  • Use CDNs when possible with local fallback....
  • Minimize the postbacks / http requests
  • GZip/compress your http
  • compress your JS & CSS

www.un.org/Depts/DGACM/index_spanish.htm 硬件设置:

  • Load Balancing,proxies...
问题回答

暂无回答




相关问题
Horizontal scaling of JSF 2.0 application

Given that JavaServer Faces is inherently stateful on the server side, what methods are recommended for horizontally scaling a JSF 2.0 application? If an application runs multiple JSF servers, I can ...

ASP.net Confusion among web architecture

A little Background: I started my career almost 5year ago as a web developer using ASP.net and C#, after working as a web developer for only a year i switched to the world of low level programming (i....

Architecture for Semantic Web Framework

I am doing a project on Web Based Ontology for E-citizenship where a ".owl" file will be generated using Protege OWL editor. We have to use that file for enabling Web service. Can anyone suggest me ...

What is the Page-Controller pattern exactly?

Is the Page-Controller pattern (the refinement of the MVC pattern as described in the Enterprise Solution Patterns using Microsoft .NET) basically the pattern of simple URI page requests (i.e. URI + ...

热门标签