codeigniter セッションの構成ファイルには 2 つの値があり、完全には理解できません。誰かが私を啓発してくれることを願っています。
# the number of SECONDS you want the session to last.
# by default sessions last 7200 seconds (two hours).
# Set to zero for no expiration.
$config['sess_expiration'] = 7200;
Q1) ユーザーがまだアクティブにアプリケーションを使用している場合でも、時間 (ログイン後 2 時間) が経過すると、アプリケーションはユーザーをログアウトしますか?
# how many seconds between CI refreshing Session Information
$config['sess_time_to_update'] = 300;
Q2) この値は (Q1) シナリオに影響しますか?