JM

Results 3 issues of JM

It defaults to `int32` when not specified, and that is not enough for modern machines with way more than 2 GB of memory.

As per [HAproxy documentation](https://docs.haproxy.org/3.2/configuration.html#3.1-lua-load-per-thread), the directive can be used multiple times. ``` This global directive loads and executes a Lua file into each started thread. Any global variable has a...

Endpoints like `/services/haproxy/configuration/frontends/{parent_name}/binds` return [cached information](https://github.com/haproxytech/dataplaneapi/blob/master/handlers/bind.go#L220-L228) that's obtained [at initialization](https://github.com/haproxytech/dataplaneapi/blob/master/configure_data_plane.go#L192) and never updated (unless [`disable_inotify` is set to `false`](https://github.com/haproxytech/dataplaneapi/blob/master/configure_data_plane.go#L213-L219)). This means the information could be out-of-date unless Data Plane API...