Re: [racket-users] Re: Racket Web servlet performance benchmarked and compared

2017-09-04 Thread Jay McCarthy
I think so too (in both places versions) On Tue, Sep 5, 2017 at 6:50 AM, Jon Zeppieri wrote: > On Tue, Sep 5, 2017 at 1:38 AM, dbohdan wrote: >> >> I've run the default benchmark with the new application, which I've dubbed >> "racket-custom".

Re: [racket-users] Re: Racket Web servlet performance benchmarked and compared

2017-09-04 Thread Jon Zeppieri
On Tue, Sep 5, 2017 at 1:38 AM, dbohdan wrote: > > I've run the default benchmark with the new application, which I've dubbed > "racket-custom". (Actually, I had to make a tweak to the benchmark to > accommodate the number of requests it was fulfilling. It made

Re: [racket-users] Re: Racket Web servlet performance benchmarked and compared

2017-09-04 Thread dbohdan
On Monday, September 4, 2017 at 7:11:14 PM UTC+3, Jay McCarthy wrote: > Thank you for working on this Danyil. You're welcome! > Would you please add this file to your tests (and each of its three > ways of running?) Added, and updated to the "many-places" version. I would like to add you to

Re: [racket-users] Re: Racket Web servlet performance benchmarked and compared

2017-09-04 Thread Jay McCarthy
I thought of another way, so here's a fourth version: #lang racket/base (require racket/tcp racket/match racket/place) (define message #"Lorem ipsum...") ;; XXX fill this in (define len (bytes-length message)) (define (serve! r w) (let read-loop () (define b

[racket-users] Re: web-server - stream file uploads? [was ... servlet performance ...]

2017-09-04 Thread George Neuner
Hi Jay, On Mon, 4 Sep 2017 16:23:43 +0100, Jay McCarthy wrote: >On Fri, Sep 1, 2017 at 10:57 PM, George Neuner wrote: > >> Is there a way in the web-server to stream incoming data? Or maybe to >> get at the request before the (multipart) form

Re: [racket-users] Re: Racket Web servlet performance benchmarked and compared

2017-09-04 Thread Jay McCarthy
Thank you for working on this Danyil. I think it is fair to test what the defaults give you. Would you please add this file to your tests (and each of its three ways of running?) It would be interesting to compare the performance of Racket versus the particular Web server library. (The Web server

Re: [racket-users] European Racketeers and conferences

2017-09-04 Thread Stephen De Gabrielle
I remember a few years ago every community would have a world map of where participants were based(1) - it seems to have gone out of fashion but I'd love to know where racket users are based. I'm in London, and it sounds like there might be two or three others in London plus a few in other

[racket-users] (seventh RacketCon): Early Bird Registration Almost Over!

2017-09-04 Thread Vincent St-Amour
Racketeers, (seventh RacketCon) keeps getting closer! It's almost a month away! In less than two weeks, early bird registration[1] will end and ticket prices will increase. Get your tickets while they're cheap! Our speaker lineup is essentially complete! Check out what tales they'll be regaling

Re: [racket-users] web-server - stream file uploads? [was ... servlet performance ...]

2017-09-04 Thread Jay McCarthy
There is not a way to do this. Should there be? Could there be? The relevant code is here: https://github.com/racket/web-server/blob/master/web-server-lib/web-server/http/request.rkt#L52 and https://github.com/racket/web-server/blob/master/web-server-lib/web-server/http/request.rkt#L219 It

Re: [racket-users] European Racketeers and conferences

2017-09-04 Thread Matthew Eric Bassett
I regret that I am not able to make it and that I didn't organise anything. Best wishes to everyone! Sent from my iPad > On 4 Sep 2017, at 10:07, Tim Jervis wrote: > > Looking forward to meeting you. > > Tim > >> On 3 Sep 2017, at 11:04, Matthew Flatt

Re: [racket-users] European Racketeers and conferences

2017-09-04 Thread Tim Jervis
Looking forward to meeting you. Tim > On 3 Sep 2017, at 11:04, Matthew Flatt wrote: > > For anyone who can make the trip to Oxford, we'll be at the Swan & Castle at > 6:30pm on Monday. We hope to see you there! > > Matthew > >> On Aug 27, 2017, at 8:12 PM, Matthias

[racket-users] Re: Seeking a graphviz like, diagramming language for Racket

2017-09-04 Thread dbohdan
Mermaid (https://github.com/knsv/mermaid) is a useful alternative to GraphViz for the cases in which it specializes. If you're working on your own diagramming DSL, you may want to look at these for inspiration: * Diagrams for Haskell