refreshSessions
定义
refreshSessions
refreshSessions
命令会更新指定会话的上次使用时间,从而延长会话的活动状态。
兼容性
此命令可用于以下环境中托管的部署:
MongoDB Atlas:用于云中 MongoDB 部署的完全托管服务
注意
所有MongoDB Atlas集群都支持此命令。有关Atlas支持所有命令的信息,请参阅不支持的命令。
MongoDB Enterprise:基于订阅、自我管理的 MongoDB 版本
MongoDB Community:源代码可用、免费使用且可自行管理的 MongoDB 版本
语法
该命令具有以下语法:
db.runCommand( { refreshSessions: [ { id : <UUID> }, ... ] } )
要运行 refreshSessions
,请使用 db.runCommand( { <command> } )
方法。
db.runCommand( { refreshSessions: [ { id : <UUID> }, ... ] } )
行为
会话识别
MongoDB 将每个指定的 UUID 与经过身份验证的用户档案的哈希值连接起来,以确定要刷新的用户会话。 如果用户没有匹配的会话,则refreshSessions
不起作用。
访问控制
如果部署强制执行身份验证/授权,则您必须通过身份验证才能运行refreshSessions
命令。
用户只能刷新属于该用户的会话。