Ben Wilson
Ben Wilson
# Cached Input List This PR improves `FormatOnSave` time by several orders of magnitude, at least when tested on my PC. Before: 900ms After: ~2-3ms An O(n), file system bottlenecked...
The idea here, per a conversation with @josevalim is to try to minimize the amount of information that is duplicated when clients subscribe to multiple documents. The largest value that...
If you create a union with invalid inner types the error message is cryptic and unhelpful. We should find a way to improve on it. Related: https://github.com/absinthe-graphql/absinthe/issues/1047 ``` union :my_union...
Hey folks, Maybe I'm doing something wrong, but if my statsd agent restarts all function calls end up raising as: ``` > Sensetra.Statsd.increment("elixir.foo", 1) ** (ArgumentError) argument error :erlang.port_command(Sensetra.Statsd, [,...
Because tracing shows up in the return value, there should probably be a good way to tracing on or off. If you're testing your API for example you don't want...
Hey! Looks like a cool library. As a minor quibble though about your readme example, you have ``` def perform(to: to, subject: subject, body: body) do # do work end...
Jose noted that changes to Plug.Upload found here: https://github.com/elixir-lang/plug/commit/cef5be27a564d244300d3e17e7040cd67225fd04 contain changes we should probably integrate.