0
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 1 year has passed since last update.

CookieとSessionについてざっくりまとめた

Last updated at Posted at 2022-07-11

Railsについての話なので、別言語別フレームワークの場合少し話が違うかもです。

Sessionについて

sessionはサーバにデータを保存し、ブラウザのcookieという領域に(データと紐付けられた)セッションIDを保存する。そして次回リクエスト時にセッションIDをサーバに渡して、サーバがチェックしてOKだったらデータをブラウザに返すもの。データそのものをcookieに保存するのではないため改ざんされにくい。

Cookieについて

cookieはブラウザのcookieという領域にデータをそのまま保存するから、署名しないと改ざんされる可能性がある。

セッションCookieについて

Cookieにはいくつか種類がある。具体的には下記4つ。
・セッションCookie
・持続的Cookie
・署名付きCookie
・暗号化Cookie

セッションCookieは名前が紛らわしいですが、ブラウザを閉じると消えるCookieのことです。

SessionとCookieの使い分け(ざっくり)

改ざんを考慮するほどでもないならcookieを使う

0
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
0
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?