Benjamin Berman

Results 118 comments of Benjamin Berman

Increase the stack size in the fiber constructor.

@pron would it be a disaster if `dataLong` and `dataObject` (i.e., the actual stack) were just... `ArrayList`s? `CopyOnWriteArrayList`s?

@rustam9, that's a @pron question why the stack isn't growing in some situations. I've encountered this too, which is why I had the workaround. I believe that it's possible to...

I think you hit the nail on the head there

> com.mcx.dms.verticles.VertxRestServer.handleCommodityPayin... Add @Suspendable to this method

Use a `ConcurrentHashMap` keyed on thread IDs. Don't overthink it :)

Based on what I just read in the **netty** source, you'd have to implement your own `ByteBufAllocator` which uses a "`TrueThreadLocal...`" reimplementation of `PooledByteBufAllocator`. You're right that this is a...

@yangchao228 I actually removed Kryo and fiber serialization from my fork, because the dependency is so old as to cause problems. Take a look here: https://github.com/hiddenswitch/Spellsource/tree/master/quasar-core If modules are important...

I fixed this by updating asm to version 9.0.

I haven't run the code, so take this with a grain of salt (i.e, it may be totally wrong). But I think the reason the first example exits is very...