I want to FLUSHALL redis every time the Rails server starts.
How can I do this?
Thanks in Advance.
P.S: I am new to rails, so excuse me if the question is very easy.
1 Answer
port = 10000
$redis = Redis.new(:port => port)
$redis.flushall
To run that on start up check