José Valim

Results 1836 comments of José Valim

@tomasz-tomczyk can you try with these two configs and let us know if it changes things? https://github.com/elixir-ecto/postgrex/issues/497#issuecomment-591661154 Btw, thank you for the well written report. :)

> Thanks for the suggestion - I assume I can pass these do the Repo.all() call? e.g. @tomasz-tomczyk can you try setting it under your repo configuration in `config/*.exs` just...

@tomasz-tomczyk I would try both options in isolation and see the impact of each one. But basically, PostgreSQL is choosing a poor query strategy, probably based on the connection cache,...

What is your production database? Is it actual Postgres or something that talks Postgres? I can confirm it exists back on PG 12: https://www.postgresql.org/docs/12/runtime-config-query.html

> prepare: :named on its own did not seem to affect my issue; I was able to replicate as expected in ~250 attempts To be clear, `prepare: :named` is the...

One option is to not add spaces if a closing tag is immediately followed by an opening tag. It is a smaller subset than #3567 so perhaps it won't remove...

We should probably avoid build a summary here if the dataframe is a composite type, such as lists or structs, by adding a conditional to this comprehension: https://github.com/livebook-dev/kino_explorer/blob/3413ce5954fc79ecef7d93890af79af6f3c9e879/lib/kino/explorer.ex#L196

Perhaps the steps here will be enough. You start the main one with `-start_epmd false -erl_epmd_port 6789` and each individual instance you start with `-start_epmd false -erl_epmd_port 6789 -dist_listen false`:...

Yes, it should. The parent node is listening on port 6789 and each child node connects to port 6789 but does not listen to any (-dist_listen false). This requires, however,...

Oh, sorry, I believe I have misunderstood your question. You want to run multiple Expert servers, not multiple clients, then you are right! In order to do that, you can...