Commits


liyafan82 authored and Micah Kornfield committed ac99ca0bacc
ARROW-6933: [Java] Suppor linear dictionary encoder For many scenarios, the distribution of dictionary entries is highly skewed. In other words, a few dictionary entries occurs much more frequently than others. If we can sort the dictionary by the non-increasing order of entry frequencies, and compare each value to encode from the beginning of the dictionary, we get the following benefits: 1) We need no extra memory space or data structure. 2) The search is extremely efficient, as we are likely to find a match in the first few entries of the dictionary. This is the basic idea behind the linear dictionary encoder. When the scenario is right (highly skewed dictionary distribution), it outperforms both search based encoder and hash table based encoders. Closes #5692 from liyafan82/fly_1018_line and squashes the following commits: 78d719698 <liyafan82> Improve Javadocs 226843899 <liyafan82> Suppor linear dictionary encoder Authored-by: liyafan82 <fan_li_ya@foxmail.com> Signed-off-by: Micah Kornfield <emkornfield@gmail.com>