English 中文(简体)
Does the Cloud solve the hosting location dilemma?
原标题:

My startup is located in Europe where most of our current users are.

I m looking for a host that will allow us to scale to the US and Asia without latency taking its toll on performance.

Does the cloud solve the distance = latency problem?

If not, Where would be the ideal hosting location for a growing startup?

Some data: Asp.net 3.5 SQL 2005 Jquery (lots of Ajax) MVC

Thanks

最佳回答

The Cloud is just an abstraction. It doesn t affect the underlying physical nature of the servers running your code and hosting your data. If the systems storing your data are a long way from your users there will some latency, no matter how you access them.

Most Cloud providers allow you to choose where you want your data - for example, Amazon S3 lets you choose to store your data in either the US or Europe - but no provider is going to be able to magically store all your data in multiple locations simultaneously.

If you want the benefit of multiple data centres you d have to allow simultaneous updates at each location and there is no way to synchronise such updates without knowledge of the business logic of the application, so you re going to have to write some code to do this.

You re still going to have a look at what each Cloud provider offers and work out how each can help solve your problems, but you re going to have to do some work yourself.

问题回答

What you re looking is CDN (Content Delivery Network) hosting for Windows Applications. In CDN, your content is cached on various POP s located across the continents. So, if a request is coming from India, cached copy of content stored on Indian POP is served. The same is the case for US, EU and other continent clients.

This technology is still in early phase of development and there are two types of CDN technology - PUSH & PULL. PUSH means content is immediately PUSHED to POP s when there is any change on Master server and PULL means POP servers are pulling content at regular interval from Master server and this interval is usually 12 hours to 24 hours.

If your site is database driven and frequently updated, PUSH technology CDN will be the right choice.





相关问题
How can we configure IIS for domain name mapping

I would like to configure IIS server at (Windows server 2003) for domain name mapping. We have purchased domain name for one of our newly created website. I would like to know how can I configure ...

ASP.net fileupload really slow

We re currently creating an online music store that allows, only for administrators, to upload songs and previews on website. The problem is that uploading songs to our website take about 3 or 4 ...

hosting administration system?

i m looking for an opensource system to manage a list of web hosting clients. Services ordered payment notifications ticket support system That kind of stuff Is there anything like that? Thanks

Website Development moving to Image Hosting

We are moving over to using Akamai for all of our large static content so far just flash but are planning to include images, css, and js files in that list. I am curious what methods others employ to ...

Does the Cloud solve the hosting location dilemma?

My startup is located in Europe where most of our current users are. I m looking for a host that will allow us to scale to the US and Asia without latency taking its toll on performance. Does the ...

Web host with Maven 2 support?

Does anyone know of a web host that has support for a Maven 2 project? Edit: I m looking for a managed shared server to put code on like what wush.net does with Subversion.

热门标签