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.
CGI::Session を使用していますが、期限切れのセッション データを削除する前にディスクから取得する方法が見つかりません。「通知: 期限切れのセッションはすべて空です」. しかし、ディスクからそれらをリロードする方法や、このファイルを読み取る方法があるかもしれません。お願い助けて。ありがとうございました。
使用するドライバーによって異なります。デフォルトでは:
perl -mCGI::Session::Serialize::default -MData::Dumper=Dumper -MFile::Slurp=read_file -e' for my $f (glob "/tmp/cgisess*") { print Dumper(CGI::Session::Serialize::default->thaw(read_file $f)) } '