Christophe de Vienne

Results 36 issues of Christophe de Vienne

If a handler is too long, the client will get a nats timeout and the handler will consider that the client has received a reply. Ideally, if the handler reaches...

The new Request handling has more time info than before. We should report these as metrics so one can adjust its worker pool size based on actual data.

The current implementation of WorkerPool does not handle the case where its parent context gets canceled. It should.

When implementing panics handling, it would be nice to have the option to report them to a sentry instance.

It allows using errors.Is and errors.As in the calling code

The current implementation create tables in the order they were added to the metadata. It obliges the user to add the tables in the right order, which can become cumbersome...

The only reason sqlx is still a dependency is to be able to use sqlx features on the underlying connection. I wonder if we could achieve that by optionally injecting...

In my 'beforeProtectedInit' I need to redirect to a route with some query parameters. Workaround implies coding all the protection in the init/update functions directly, which I would prefer not...

6.1.0

In some case we have to send several messages in the socket at once, but in a specific order, which cannot be guaranteed by using several Cmd. I can see...

The idea is to be able to deal with big files (that would not fit in memory). A possible API could be: ```elm sliceString : Int -> Maybe Int ->...