Vassil Dichev

Results 7 comments of Vassil Dichev

Just wondering, why is the schema cache implemented using a WeakHashMap? The entries cannot be reused between context runs anyway, and within a run a schema seems to be produced...

Thanks for the ideas! I know performance is often not the first priority and it certainly takes a lot of time to measure and improve. Let me check which area...

Sorry, but this doesn't work on 0.5.0 and it doesn't make much sense- is this supposed to also handle nulls in _any_ nested arrays? Even if it worked, why would...

If you mean this answer: https://twitter.com/coda/status/141959832570834944 there are use cases where it's not applicable. To give more context: of course it would work with `parse[List[Option[JValue]]]("""[null]""")`. The problem is that you...

Thanks, Stuart, this explains it better than I did. As you mentioned, this workaround is not a general solution, since "you always have to be on the lookout for nulls".

Yeah, I liked this in Twitter's library, but for various reasons I can't use it. Let's just say it's suitable code to put in a book, not in production. So...

OK, I was suspecting that it's not only a technical issue and I see the arguments for not mapping the names to case class field names automatically. Regarding "SELECT *"-...