danielblagy / budget-app

0 stars 0 forks source link

using redis for both caching and persistent in-memory store? #31

Closed danielblagy closed 1 year ago

danielblagy commented 1 year ago

Right now redis is used to both "cache" data and store jwt tokens in blacklist as a persistent store.

This means that redis is not really used as a cache, but rather as a persistent store.

What is needed:

Possible solutions that I can think of right now:

danielblagy commented 1 year ago

I chose to go with 2 separate redis servers, one for caching and one for persistent data store.

32