aboutsummaryrefslogtreecommitdiff
path: root/files/ja/glossary/cdn
diff options
context:
space:
mode:
authorPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
committerPeter Bengtsson <mail@peterbe.com>2020-12-08 14:40:17 -0500
commit33058f2b292b3a581333bdfb21b8f671898c5060 (patch)
tree51c3e392513ec574331b2d3f85c394445ea803c6 /files/ja/glossary/cdn
parent8b66d724f7caf0157093fb09cfec8fbd0c6ad50a (diff)
downloadtranslated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.gz
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.tar.bz2
translated-content-33058f2b292b3a581333bdfb21b8f671898c5060.zip
initial commit
Diffstat (limited to 'files/ja/glossary/cdn')
-rw-r--r--files/ja/glossary/cdn/index.html17
1 files changed, 17 insertions, 0 deletions
diff --git a/files/ja/glossary/cdn/index.html b/files/ja/glossary/cdn/index.html
new file mode 100644
index 0000000000..9f6ccc7225
--- /dev/null
+++ b/files/ja/glossary/cdn/index.html
@@ -0,0 +1,17 @@
+---
+title: CDN
+slug: Glossary/CDN
+tags:
+ - Glossary
+ - Infrastructure
+translation_of: Glossary/CDN
+---
+<p><strong>CDN</strong> (Content Delivery Network、コンテンツ配信ネットワーク)は、様々な地域に分散されたサーバーの集まりです。これらのサーバーは同じ内容のデータのコピーを保有し、各ユーザーに最も近いサーバーからデータへの要求に応えることが可能になっています。 CDN は通信量の影響を受けにくい高速なサービスを実現します。
+
+</p><p>CDN は、 Bootstrap や jQuery など、スタイルシートや JavaScript ファイル(静的ファイル)からなるライブラリを配信するために広く用いられています。これらのサードパーティライブラリの配信に CDN を用いることが有効な理由はいくつかあります。</p>
+
+<ul>
+ <li>ライブラリのような静的なファイルを CDN から配信することで、サーバーへの要求負荷を軽減します。</li>
+ <li>ほとんどの CDN は世界中にサーバーを配置しています。そのため、自分のサーバーよりも CDN のサーバーの方が地理的にユーザーの近くに位置しているかもしれません。地理的な距離は応答時間に比例的に影響します。</li>
+ <li>CDN には適切なキャッシュ設定が適用されています。 CDN を使用すると、自分のサーバーに静的ファイルを配置するための設定を行う手間を省くことができます。</li>
+</ul>