I have a rails application on my server that should use Redis as a caching mechanism.
Should I run one instance of Redis for each of my applications or support Redis support?
I am worried that if I delete one value in one application, the value with the same key will be deleted for all my applications.
I do NOT , for example, I want this to happen.
Attachment 1
Rails.cache.write("key", "value")
Appendix 2
Rails.cache.read("key") => "value"
Appendix 3
Rails.cache.delete("key")
Attachment 1
Rails.cache.read("key") => nil
source share