This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2022-07-19
Channels
- # announcements (4)
- # aws (9)
- # babashka (1)
- # beginners (41)
- # cider (13)
- # clojure (45)
- # clojure-europe (16)
- # clojure-hungary (3)
- # clojure-norway (6)
- # clojure-uk (6)
- # clojurescript (14)
- # clr (3)
- # css (1)
- # datalevin (2)
- # datomic (2)
- # fulcro (8)
- # introduce-yourself (6)
- # jobs (3)
- # malli (2)
- # nbb (49)
- # off-topic (3)
- # reitit (23)
- # shadow-cljs (36)
- # tools-deps (2)
I should have supplied the repo: https://github.com/RokLenarcic/fulcro-rad-indexed-db
I was reading through the raw stuff and saw https://github.com/fulcrologic/fulcro/blob/682093d70e9b803c2c24be67eedc8d1bd6d918e6/src/main/com/fulcrologic/fulcro/raw/components.cljc#L846 -- is this being used for all :use-hooks?
components such that the shouldComponentUpdate
behavior is functionally there for hook components too now?
I've setup a fulcro file upload test, but found that can not upload file more than 8mb size, I can successfully upload one file or multiple files at once as long as the total size not exceed 8mb. Am I missing some config option that set the size limit? The server has no log, only the client report a "Remote Error"
in fact, if you deploy behind a gateway, often the gw has one, your server which acts as a proxy has one, etc. If you plan to dpeloy to AWS, for example, API gateway has a hard 10MB limit, and I think the load balancers do as well? Don’t remember on that…but I’ve had to resort to uploading to signed s3 urls in AWS for most large file use, which isn;t actually hard at all.
Nothing at all to do with Fulcro..these are sane limits put in place by the various web servers to ensure reasonable performance.
Yes, thank you for pointing out, the http-kit has a run-server option :max-body limit to 8M.