页面加载时等待时间过长

时间:2017-01-09 14:19:39

标签: php css performance iis-8 pagespeed

我已经完成了缩小所有js / css文件,压缩该页面的所有图像,通过在关闭正文之前移动到底部来防止渲染阻塞,甚至删除所有j以测试负载但是仍然需要更多加载索引php页面超过40秒。

当我的本地计算机(iis 7.5)上的主机在iis 8上运行时没有问题...我已尝试向cpanel(linux)平台上的另一台服务器上升并且没有问题。

的web.config

public class ColorPicker : MonoBehaviour, IPointerClickHandler
{
    public GameObject Cube;

    public void OnPointerClick(PointerEventData eventData)
    {
        if (Input.GetMouseButtonUp(1))
        {
            Vector3 localPosition = transform.InverseTransformPoint(eventData.pressPosition);

            Color color = (GetComponent<RawImage>().texture as Texture2D).GetPixel(Convert.ToInt32(localPosition.x),
               Convert.ToInt32(localPosition.y));
            Cube.GetComponent<Renderer>().material.color = color;
        }
    }
}

使用pingdom分析网站,下面是my Site

的结果

enter image description here enter image description here

0 个答案:

没有答案
相关问题