cloudflare 上的文件会消失吗?性能如何
can files on cloudflare disappear and what about performance
所以我是网络开发领域的新手。但是对于我在 angular 使用的一些插件,我注意到有些插件使用 cloudflare。
像这样:
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css">
所以我的问题是我应该下载这些文件以防万一还是它们会永久在线?
如果您使用 cloudflare,这会提高我网站的速度吗?还是相反。因为我注意到有些文件没有使用紧凑的 css 文件。
因此,这实际上并不是在引用 CloudFlare 上的站点,而是在引用名为 CDNJS 的服务,CloudFlare provide CDN services for them. These URLs are intended to the permanent endpoint in order to access scripts from CDNJS。
在普通的CloudFlare站点中,CDN是透明的。 CloudFlare 的工作原理是将用户的请求代理到源服务器,它们位于中间并从 their 64 data centers around the world 执行缓存和优化,根本不需要更改您的代码。
所以我是网络开发领域的新手。但是对于我在 angular 使用的一些插件,我注意到有些插件使用 cloudflare。
像这样:
<link rel="stylesheet" href="http://cdnjs.cloudflare.com/ajax/libs/select2/3.4.5/select2.css">
所以我的问题是我应该下载这些文件以防万一还是它们会永久在线?
如果您使用 cloudflare,这会提高我网站的速度吗?还是相反。因为我注意到有些文件没有使用紧凑的 css 文件。
因此,这实际上并不是在引用 CloudFlare 上的站点,而是在引用名为 CDNJS 的服务,CloudFlare provide CDN services for them. These URLs are intended to the permanent endpoint in order to access scripts from CDNJS。
在普通的CloudFlare站点中,CDN是透明的。 CloudFlare 的工作原理是将用户的请求代理到源服务器,它们位于中间并从 their 64 data centers around the world 执行缓存和优化,根本不需要更改您的代码。