Igor Mamushin

Results 10 comments of Igor Mamushin

If it is global, is it normal that it is created for each client? And after disconnecting the client, the buffer continues to hang in the memory, causing a leak

Okay, I did `ChannelOption.Allocator, UnpooledByteBufferAllocator.Default`. But the memory is not released after the client is turned off. What can I do?

I meant a memory leak. The buffer is not destroyed with the client turned off. Even if I use UnpooledByteBufferAllocator

If setting will have "Type" then you don't needed add Newtonsoft.Json. And i can use it like this: ``` ObjectCloner.Clone(myObject, new Settings { IgnorAttributeType = typeof(JsonIgnoreAttribute) }); ``` Actually if...

About second question. I think it will good if we can select this in attribute. I think it can be useful sometimes. But default value must will "clone.SomeIgnoredProp == default".

Hi, @enkodellc! You may watch my fork: https://github.com/IgorMamushin/ObjectCloner Solution isn't good enough, but maybe you will do in your own way :) I did it for one of my previous...

Ya, i don't think that it's a good solution anyway. Maybe i will find time for do it well

Sometimes i want get object with clone only public property and field. But some property can be set in constructor, like this: ``` class MyClass { private Dictionary _myPrivate public...

Yep. I think if you want clone only public properties/fields you need create object with constructor. It can be contract for this mode. Or do something with initialize private field...

Hi. It doesn't work in huge project, I cannot share OpenAPI definition here. I've tried to create pet project. But it works fine there! I'll try to figure out how...