Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-14 Thread Brian Adkins
Hmm... I don't see a new message in the thread, so I'm not sure what you approved. No worries though. On Friday, February 14, 2020 at 7:36:26 AM UTC-5, Robby Findler wrote: > > It is possible that your post wasn't deleted but got held up in > google's spam traps. I just approved a message from

Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-14 Thread Robby Findler
It is possible that your post wasn't deleted but got held up in google's spam traps. I just approved a message from you (that I was alerted to only this morning). Was that the message? Robby On Thu, Feb 13, 2020 at 2:57 PM Brian Adkins wrote: > > I tried replying earlier today, but somehow the

Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-14 Thread Brian Adkins
Will Racket's pleasant surprises never end? :) This is great news! I've had a blast coding web applications in Racket over the last 15 months. I now understand "The Lisp Curse" a bit more :) http://winestockwebdesign.com/Essays/Lisp_Curse.html In other words, developing web apps with what is

Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-13 Thread Brian Adkins
I tried replying earlier today, but somehow the post got deleted - could've been user error I suppose. Anyway, the gist of the response was how I continue to be amazed by how often I get pleasant surprises with Racket - either there is some facility to do what I want that I just haven't found

Re: [racket-users] How to stream file uploads with the Racket web server?

2020-02-13 Thread Bogdan Popa
The version of the web-server that will be included with Racket 7.6 changes the way file uploads are handled so that they get offloaded to disk after a certain threshold (similar to how that nginx module you linked to works). You can check out the pre-release docs for details: *

[racket-users] How to stream file uploads with the Racket web server?

2020-02-13 Thread Brian Adkins
I'm posting a file to my web app using the following form: ... I use a simple function to create a hashtable of attributes: (define (form-values req) (for/hash ([ b (in-list (request-bindings/raw req)) ]) (cond [ (binding:form? b) (values