Implementation of `temp-file-store` creates too many futures #74
The canonical repository is now at: https://github.com/ring-clojure/ring
Issues should be raised there.
In this case, it looks like the logic for the store is wrong; the expiration thread should only be created once, but it has been placed inside the storage function, not outside it.
alexott
commented
Aug 12, 2012
Oops, I'm sorry - I forgot about ring organization - I will create issue there...
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Implementation of
temp-file-storein thering.middleware.multipart-params.temp-filecreates too many futures objects and this leads to too many threads running on web services that handles many multipart uploads...P.S. I'll try to refactor code to use single expiration thread or something like...