Marc Bachmann
Marc Bachmann
Here's the link to the routing documentation: https://github.com/choojs/website/blame/49f3b8d4aabbadaf67c13854fb3ce680a57374dd/content/docs/routing/index.md#L340 I don't think that this ever worked in v6... maybe in earlier versions. The route is available on `app.state.route`.
We won't have access to the previous state anymore with the current setup. Should we only pass specific properties? ... I'm also not sure how we should differentiate the state...
Would you expect this to also match against `/route/matchsomething`? FUI I guess nanorouter will never support all patterns express supports. express has a very complex router that also supports a...
could you execute `pool.query('SHOW search_path;')` to make sure you're really querying the public schema. ` By default it should be: ``` search_path ----------------- "$user", public ```
Explicit pipelining would be interesting. E.g. `ioredis` supports `client.pipeline([['get', 'foo'], ['get', 'bar']]).exec()`. `pg` could do the same to ensure they are sent on the same connection without any other slow...
With transactions it will get executed to a single client, so that will work as desired. But when using a pool, pipeline would get distributed among all the clients. In...
I also wondered about this behavior. Just because one query fails, it doesn't mean that the connection can't be reused. The problematic code is here: https://github.com/brianc/node-postgres/blob/f5e87ac0b17c8e8d7e66cbcdcc2eac8f9852577d/packages/pg-pool/index.js#L331-L338
I'm having the same issue with `listen_addresses = '*'` and running on docker for mac. I assume https://github.com/docker/for-mac/issues/1432 could be the issue here.
Sorry, I'm not sure what the issue was anymore. I was able to upgrade later and everything is running on node 18. Usually we have node outside docker, directly on...
Defining topologySpreadConstraints and pod disruption budget on the coredns manifest would be a good start: https://github.com/k3s-io/k3s/blob/58315fe135101f1a06bf439687c2be9da692648f/manifests/coredns.yaml