Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 Facebook 中,当您更改密码时,它可以选择自动退出登录到同一帐户的任何其他设备。这是如何运作的?
创建会话时,会话密钥与 cookie 一起存储在数据库中。这意味着 cookie 在服务器端通过数据库中的数据进行验证。登录后,用户可以查看从数据库中检索到的会话数据。这使用户有机会退出任何其他设备,因为一旦删除数据库条目,具有相同密钥的 cookie 将不再有效。