This repository has been archived by the owner on Feb 16, 2023. It is now read-only.
Sans-Redis #530
VMannello
started this conversation in
Archived FRs
Sans-Redis
#530
Replies: 1 comment 1 reply
-
If it works, why not? I'm not exactly sure how that's supposed to work. Redis is used for two different purposes in paperless:
And well, I've configured it as a cache for Django as well, but that's entirely optional. Remember that things such as consumption tasks, the web server, and the scheduler that regularly checks for new mail all run in different processes, so we need some means of communication between these. An In-memory system will not work. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Would you be interested in a PR that allowed for a local KV store / message broker? Redis seems reallly heavy handed for running this on devices like a NAS or Pi or honestly in any environment that isn't leveraging distributed workers. Since you're already distributing work within your library you're likely taking a performance hit incorporating redis on these small devices. My proposal is to mock out redis when no url is provided similar to the SQLite approach. Single container for the win.
Beta Was this translation helpful? Give feedback.
All reactions