Prokhorov Aleksei
Prokhorov Aleksei
``` doctrine: dbal: default_connection: default connections: default: url: '%env(DATABASE_URL)%' server_version: "8.0.31" use_savepoints: true options: # some TLS settings master: url: '%env(MASTER_DATABASE_URL)%' server_version: "8.0.31" use_savepoints: true options: # some TLS settings...
Production: Code reads and writes to the LOCAL DB and MASTER GLOBAL SERVER and read from REPLICA DB FROM MASTER ``` --- |----MASTER GLOBAL SERVER---| --- | | A data...
Now I wrote a copy of your StaticDriver with changes in param hash and did ``` class ConnectionIsolationBreakerMiddleware implements Middleware { public function wrap(Driver $driver): Driver { return new ExtendedStaticDriver($driver);...
But this is not the best way, because I have to rewrite this every time you release :))
@dmaicher Yes, closing this PR.
@dmaicher I think yes, if i could set the same keys for all connections. BTW **json_encode** does not garauntee the order of elements in the array, so even if connections...
> Do you have a source for that? The first part is https://www.rfc-editor.org/rfc/rfc7159.html#section-1 > An object is an unordered collection of zero or more name/value pairs, where a name is...
Any news here @greg0ire @W0rma ?
Tests have been added and the code has been changed to a more accurate version. @greg0ire pls, look
@greg0ire @SenseException @derrabus could someone check this pr ?