zapov
zapov
Sure, thats sounds like a good POC to validate that you can switch the serialization library
@nmihajlovski I did something with my limited knowledge of Rapidoid here: https://github.com/rapidoid/rapidoid/pull/171/files That body parsing feels like major hack.
I need access to some low level details such as PGStream. I want to execute some specific queries without overhead of packing and parsing. Currently PgObject requires string conversion when...
I did not because I don't know yet how to convert such composites into binary format, only into string format.
Is there any hope for this? I can write a test if thats blocking it, but I have a feeling you don't want to allow this ;(
Ok, I'll try that (by extending the PgObject) and will get back here then
Well, as explained, I don't want to create strings for PgObject. I have some large arguments and would prefer to provide length and write to stream directly instead. I can't...
It would be great if there was a Kotlin test project where such examples could be tested and verified but I have not yet found to setup such a project...
I tried setting up java8 test project like that but it didn't do annotation processing on Kotlin at all. So I setup a separate project which is somewhat better but...
FWIW this test is now in, although commented out: https://github.com/ngs-doo/dsl-json/blob/master/tests-kotlin/src/main/kotlin/com/dslplatform/json/ModelWithIgnore.kt#L17 I have some questions though: * to be able to pass the default in, need to figure out where Kotlin...