Skip to content

Releases: redivis/redivis-r

0.6.22

30 May 05:38
f08db87
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.21...0.6.22

0.6.21

28 May 23:22
Compare
Choose a tag to compare
  • fix: require arrow >= 16.0, fix build issue on m-series macs

0.6.20

21 May 16:01
Compare
Choose a tag to compare
  • perf: improve memory efficiency for loading in-memory tables

0.6.19

21 May 05:18
05d91ff
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.18...0.6.19

0.6.18

09 May 22:13
Compare
Choose a tag to compare
  • fix: set upper parallelization limit when loading tables

0.6.17

24 Apr 16:04
Compare
Choose a tag to compare
  • fix: implement retry handling for broken connections when reading records

Full Changelog: 0.6.16...0.6.17

0.6.16

23 Apr 04:17
db7bb53
Compare
Choose a tag to compare

What's Changed

Full Changelog: 0.6.15...0.6.16

0.6.15

22 Apr 15:02
4781b8e
Compare
Choose a tag to compare

What's Changed

  • perf: improve memory allocation and parse performance for in-memory datatypes by @imathews in #17

Full Changelog: 0.6.14...0.6.15

0.6.14

20 Apr 18:00
Compare
Choose a tag to compare
  • perf: reduce memory consumption for multiprocess threading

0.6.13

19 Apr 20:27
Compare
Choose a tag to compare
  • refactor: don't write to disk for in-memory data structures
    • Previously, we would stream data to disk, and then load it into a tibble, etc (except for the to_arrow_dataset method, which is never loaded into memory). This simplified a lot of the logic, especially when performing parallelization, but could ultimately eat up a lot of disk, and may cause issues when a system's memory exceeds the available disk. This issue has now been resolved.
  • fix: fix bad parameters for to_arrow_table()