1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

APサーバとは

1
Posted at

勉強前イメージ

初めて聞いた

調査

APサーバとは

AP とは アプリケーションの略で、アプリケーションを実行するためのサーバのことです。

web3層構造システム

web動かすには基本的に下記のようなサーバを使用します

  • webサーバ
  • AP(アプリケーション)サーバ
  • DBサーバ

12021-01-30 APサーバとは - diagrams.net - Google Chrome 2021-01-30.png

  1. クライアントからのリクエストを webサーバ が受け取る
  2. webサーバからの処理リクエストを APサーバ が受け取る
  3. APサーバでアプリケーションを実行
  4. アプリケーションが DBサーバ を操作して、結果を処理に入れる
  5. 結果を webサーバ にわたす
  6. webサーバがクライアントにデータを表示

webサーバとAPサーバの違い

  • webサーバ : webのデータを表示させるサーバ
  • APサーバ : java,ruby,php などを実行して処理を行う

料理で例えると、
料理を乗せるお皿 = webサーバ = データを表示させる
食材を調理する = APサーバ = アプリケーションの処理を行う

ryouriAPサーバとは - diagrams.net - Google Chrome 2021-01-30.png

よくwebサーバにアプリケーションが乗ってるけど・・・

webサーバの中でアプリケーションが処理されることもあります。
そのようなサーバを webアプリケーションサーバ と呼ばれます。

勉強後イメージ

webとアプリケーションって基本的にはくっついてんのかなー?ってけど、
たしかに役割的には別れてる・・・

参考

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?