Lorenz Wrobel

Results 76 comments of Lorenz Wrobel

Yes the change to sync the yaw and pitch on spawn [has already been implemented.](https://github.com/juliarn/npc-lib/commit/fc9d497f90252437d4677a75f4595384337fb95a) It just isn't in the beta5, so you have to depend on the latest commit...

Seems 1.20.4 has actually been implemented in #91. Would be nice if you could build and upload it to curse/modrinth @comp500, shouldn't take too much time. First of all it...

I have been investigating a little bit and it seems this issue occurs because there are multiple PacketDispatcher threads on the wrapper. Everything is sent in the right order from...

My files were about 400mb large. Your setup might work because you have faster hard drive write speeds and the wrapper doesn't have a problem keeping up (There are less...

Yes for incoming packets I propose to put them in a queue with a max size, so they do not use up memory. Uploading will take longer, but tbh that's...

Uhm either I or you do not understand how netty handles memory. To answer your first point: Yeah, still +50MB on the heap for each upload task If you take...

Another options is to discard the custom chunk protocol completely and do not send it over the network via packets, but rather directly. This way we'd be avoiding errors due...

Another option to actually free the ByteBuffers as soon as possible is to use netty's UnsafeMemoryManager instead of the ByteBufferMemoryManager

Didn't see that one, but it does work wonders. I'm leaving this open until you have time to implement it

Seems promising so far, have you figured out yet if you want to remove the need for the intermediate Buffer in ChunkedPacket? Or maybe do something similar in the NettyPacketEncoder?