ExpandingMan
ExpandingMan
Ideally the `ArrowVector`s should be views into data which are created by reading the metadata. This way, the overhead of creating them should be the same as the overhead of...
I found that avoiding the distinction between e.g. `Primitive` and `NullablePrimitive` is more effort than it's worth. I also found that one really should avoid conflating the "logical" memory types...
See [here](https://slackinvite.julialang.org/) for slack invites if interested.
Great, thanks! I don't know what you have planned, and I haven't really given this any thought yet, but one thing I'd like to recommend is that you consider that...
Definitely yes, we'd ultimately want the ability to store any Julia struct. One thing to keep in mind though: to get good performance you are going to have to make...
@kcajf sorry I had missed your comment all that time ago. It's a little hard for me to guess how much effort that would be right now. I'm probably going...
Thanks, I value that feedback quite a lot because I was initially feeling quite unsure about it. As I've done a little more research I think it's pretty clear that...
Back to pointers as default. We use the `unsafe_getvalue`, `unsafe_isnull` and `unsafe_construct` methods. All `setindex!` and `setnull!` methods are still safe and will probably remain so, as there aren't really...
Note to revisit this after Julia 1.0.1 thanks to [Keno's fix](https://github.com/JuliaLang/julia/pull/28707).
Yup, it really sucks but it really does seem to be pretty close to optimal, as far as I can tell. The problem with strings is that there's really a...