skip to Main Content

Store Rails session using Redis

The default session store for Rails is cookie_store. This makes the session be stored on the client side (correct me if I am wrong). I want to change this default behavior, so that I can store the sessions into Redis…

VIEW QUESTION

Redis Rate Limiter Pattern

I am trying to use Redis Rate limiting patter as specified in https://redis.io/commands/incr under "Pattern: Rate limiter 1". But how can I scale this in case I want to do rate limiting across multiple servers. Like I have service deployed…

VIEW QUESTION
Back To Top
Search