Email list hosting service & mailing list manager

GraphQL client in Chicken: next steps Lassi Kortela (25 Jul 2019 17:00 UTC)
(missing)
Re: GraphQL client in Chicken: next steps Lassi Kortela (31 Jul 2019 19:34 UTC)
Re: GraphQL client in Chicken: next steps David Krentzlin (10 Aug 2019 07:16 UTC)
Re: GraphQL client in Chicken: next steps John Cowan (25 Jul 2019 18:42 UTC)
Re: GraphQL client in Chicken: next steps Lassi Kortela (25 Jul 2019 18:46 UTC)
Re: GraphQL client in Chicken: next steps Lassi Kortela (26 Jul 2019 09:06 UTC)

Re: GraphQL client in Chicken: next steps Lassi Kortela 25 Jul 2019 18:46 UTC

> IMO packrat parsing, while a powerful tool, should not be used to
> replace recursive descent, as it inherently has more overhead.  It
> should be saved for situations where a lot of lookahead is required and
> the non-packrat version (an Earley parser, say) would be n^3.

I want to switch to packrat because the code will be shorter, more
readable, and be less effort to write. Do you think the overhead will be
too much (e.g. a small server won't be able to serve enough clients, or
a DoS attack by exploiting this implementation detail will become easier)?