English 中文(简体)
what i need to do in my code of my website to use CDN servers
原标题:
  • 时间:2010-01-12 08:22:01
  •  标签:
  • php
  • lamp
  • cdn

i am use a lamp environment ,

What things I need to pay attention during the development of the site, if the client wants to be ready to use CDN ?

thanks

最佳回答

The easiest is probably to make sure that static assets (images, javascript and CSS, usually) is easily cachable, and movable. We ve done this using a special template function that takes a relative URL (something like /images/graphics/someimage.png) and turns it into a link to our static server (http://static.example.com/images/graphics/someimage.png).

When you have a function that does this, and use it to generate all static asset URLs, it will be trivial later on to move these assets to a different server, or even to different servers based on geolocation.

问题回答

Are you meaning Content distribution network (like Akamai) when you say CDN? If so, then the answer is "it depends."

It depends on which service you use: Each service has different capabilities. Akamai has a full API that you can do all kinds of fun stuff with. Some only do geographical DNS tricks with servers on the east & west coast. Some are in between.

It also depends on what you want to use the service for. Just image hosting? File downloads? Streaming content?

You can also cache dynamic pages, which can bring huge benefits to performance, but remember that you can t cache any pages with personalized data in them.

E.g. say you had a news page updated every hour, you could cache it on the CDN with a TTL (Time-To-Live) of 10 minutes. This would speed up page times and reduce server load.

But if you have any personalised data, for example "Welcome, username" in the banner, you can no longer cache the whole page as it will serve the wrong data to visitors.

One technique to avoid this is to put personalized data in a separate page fragment in a different folder, and load them by AJAX, making sure that this folder is never cached.





相关问题
Brute-force/DoS prevention in PHP [closed]

I am trying to write a script to prevent brute-force login attempts in a website I m building. The logic goes something like this: User sends login information. Check if username and password is ...

please can anyone check this while loop and if condition

<?php $con=mysql_connect("localhost","mts","mts"); if(!con) { die( unable to connect . mysql_error()); } mysql_select_db("mts",$con); /* date_default_timezone_set ("Asia/Calcutta"); $date = ...

定值美元

如何确认来自正确来源的数字。

Generating a drop down list of timezones with PHP

Most sites need some way to show the dates on the site in the users preferred timezone. Below are two lists that I found and then one method using the built in PHP DateTime class in PHP 5. I need ...

Text as watermarking in PHP

I want to create text as a watermark for an image. the water mark should have the following properties front: Impact color: white opacity: 31% Font style: regular, bold Bevel and Emboss size: 30 ...

How does php cast boolean variables?

How does php cast boolean variables? I was trying to save a boolean value to an array: $result["Users"]["is_login"] = true; but when I use debug the is_login value is blank. and when I do ...

热门标签