Hacker News new | ask | show | jobs
by thom 2543 days ago
Yeah, I'm surprised we're having performance arguments about these two libraries with mostly undefined performance characteristics which both run on a single-threaded runtime.
1 comments

data.table does multithreading for a number of common operations. Running in parallel (not multithreaded) is quite well supported.
data.table’s OpenMP stuff is pretty haphazard, and can’t parallelise anything that calls back into R code. And anything outside of this involving forking lots has just been painful every time I’ve seen it, and again, way slower than doing it on a more performant platform up front.