job-board icon indicating copy to clipboard operation
job-board copied to clipboard

[FEATURE] introduce repository cache

Open ghost opened this issue 3 years ago • 0 comments

right now the caching is done on the handlers/server layer. As a better testable and cleaner approach there should be a cached repository that sits in front of the database repository. This once the #12 is complete.

So there would be

before

handler (cache retrieved from memory) -> database repository

after

handler -> cached repository (retrieve from in memory cache) -> database repository

ghost avatar Feb 13 '22 13:02 ghost