参考 > 参考 > 数据库命令 > 会话命令 > refreshSessions
在本页面
refreshSessions
3.6版的新功能。
该refreshSessions命令更新指定会话的上次使用时间,从而扩展了会话的活动状态。
refreshSessions 具有以下语法:
{ refreshSessions: [ { id : <UUID> }, ... ] } )
要运行refreshSessions,请使用方法。db.runCommand( { <command> } )
db.runCommand( { <command> } )
db.runCommand( { refreshSessions: [ { id : <UUID> }, ... ] } )
MongoDB将每个指定的UUID与经过身份验证的用户凭据的哈希值连接起来,以标识要刷新的用户会话。如果用户没有匹配的会话,则refreshSessions 无效。
如果部署强制执行身份验证/授权,则必须对您进行身份验证才能运行该refreshSessions命令。
用户只能刷新属于该用户的会话。
也可以看看
startSession
$listLocalSessions
$listSessions