Answer the question
In order to leave comments, you need to log in
Gem for ruby on rails traffic metric?
Gentlemen, Ruby. Please tell me a gem to track site visitors. We need to count the number of unique visitors, and it is desirable to have built-in helpers for a nice graphic display (plotting a graph)
Answer the question
In order to leave comments, you need to log in
There is no normal gem. If you do this with records in the database, it will slow down. I would do it on Redis.
We put Redis, we connect gems.
gem 'redis'
gem 'redis-rails'
before_action :tracking_users
def tracking_users
$redisTrackUsers.set(request.remote_ip, true, ex: 24*60*60) // через день поле уничтожится
end
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question