|
|
|
|
|
by jmuhlich
2304 days ago
|
|
Sorry, I thought Feather supported random row access but it turns out it only supports random column access. For fst, I only played with the R interface, which would be called like this to retrieve row 12345 from the "fingerprint" column: read_fst("library.fst", columns="fingerprint", from=12345, to=12345)
However fst didn't offer a raw/binary column datatype last I checked, which is frustrating. It has chr (string) but R can't have embedded NUL bytes in strings, so that was a dead-end for efficient storage of binary fingerprints for R. I didn't check if the underlying fstlib structures accept NULs in string columns. |
|