Pavel Voronin

Results 41 comments of Pavel Voronin

@mpollmeier Unfortunately, not an option for us. =( We get ids from external system and they are `UUID`s

I found the reason: If `paket.exe` exists locally, for some reason `dotnet restore` in docker running on Linux resolves to `.paket/paket.exe` via `Paket.Restore.targets`.

Sorry, F# calls it `ResizeArray` that is [`System.Collections.Generic.List`](https://docs.microsoft.com/en-us/dotnet/api/system.collections.generic.list-1?view=netcore-3.1)

In .NET 8 preview docker Restore step throws. https://learn.microsoft.com/en-us/dotnet/core/compatibility/serialization/8.0/binaryformatter-disabled > Starting in .NET 8, the affected methods throw a [NotSupportedException](https://learn.microsoft.com/en-us/dotnet/api/system.notsupportedexception) at run time across all project types except Windows Forms...

If my application transforms response items to objects of different type but the output is relatively large, it's better to convert each item separately rather than loading the whole payload...

> Not Worth It in my opinion. Why do you think it's that rare thing? It looks like a perfect case for ETL processing pipeline built with a chain of...

> I do think that it's rare that you are so short on memory that you cannot afford to buffer the response and parse it all at once. In theory...

With outbox feature, please.