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.
ページで現在オンラインになっているユーザーの数を確認する最良の方法は何ですか?
最も簡単な方法は、ユーザー モデルに last_online タイムスタンプを追加し、online_now というユーザーのスコープを定義することです。
class User < ActiveRecord::Base def self.online_now where("last_online > ?", 15.minutes.ago) end end