Bernard Normier

Results 155 comments of Bernard Normier

> For example, if you send a proxy to the server, it will no longer be valid after you create a new session. That's really an implementation choice / limitation....

> > Since the Glacier2 categories are UUID-like, you could imagine that an old category remains valid even after reconnection. > > These categories are not valid after the session...

See: https://github.com/zeroc-ice/ice/blob/badafe8b848181a720ab96b48da6abc170fd918c/slice/Glacier2/Router.ice#L70 https://github.com/zeroc-ice/ice/blob/badafe8b848181a720ab96b48da6abc170fd918c/slice/Ice/Router.ice#L38 The way I see it, Glacier2Connection would NOT expose the Glacier2 router proxy at all to the application. This proxy is an implementation detail of Glacier2Connection. The...

I implemented leader-follower with MultiplexedConnectionRps (not difficult, just need a helper TCS). I could not see a difference for coloc on Windows.

leader-follower is not a good idea. The current setup (with a single read flow) is much simpler.

See #2118. Would be nice to do, but I also want to ship 0.1 ASAP. For the name for this multiplexed coloc transport, I propose `moloc`, a mash of multiplexed...

We're talking about constructor parameters for ClientConnection and ConnectionCache here. I find `ILogger?` much more user-friendly and expected than `IClientProtocolConnectionFactory`. Removing `ILogger?` would also prevent us from using the logger...

I find the proposed optimization too complicated. I am also not a fan of baking-in values such as "1024 elements". If the elements are large, 1024 elements could be quite...

The size of this array is `1024 * sizeof(element)`, where sizeof(element) depends on the element. Does not matter if you 1 or 1024 "live" elements in the array. For example,...

Interceptors, middleware and icerpc reverse proxies can define icerpc fields to communicate with each other. It's not clear to me why we'd want to use http cookies for such communications--with...