-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
2 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Package: qs2 | ||
Type: Package | ||
Title: Efficient Serialization of R objects | ||
Title: Efficient Serialization of R Objects | ||
Version: 0.1.1 | ||
Date: 2024-09-16 | ||
Authors@R: c( | ||
|
@@ -12,7 +12,7 @@ Authors@R: c( | |
person("Mori", "Yuta", role = c("ctb", "cph"), comment = "Contributor/copyright holder of zstd bundled code"), | ||
person("Francesc", "Alted", role = c("ctb", "cph"), comment = "Shuffling routines derived from Blosc library")) | ||
Maintainer: Travers Ching <[email protected]> | ||
Description: Streamlines and accelerates the process of saving and loading R objects, improving speed and compression compared to other methods. The package offers two compression formats: the 'qs2' format which utilizes R serialization via the C API while improving underlying compression and disk IO, and the 'qdata' format which implements its own serialization and is slightly faster and better compressed. Additionally, the 'qs2' format can be directly converted to standard 'RDS' format, ensuring any data saved is future compatible. | ||
Description: Streamlines and accelerates the process of saving and loading R objects, improving speed and compression compared to other methods. The package provides two compression formats: the 'qs2' format, which uses R serialization via the C API to optimize compression and disk I/O, and the 'qdata' format, featuring custom serialization for even faster performance and better compression. Additionally, the 'qs2' format can be directly converted to the standard 'RDS' format, ensuring long-term compatibility with future versions of R. | ||
License: GPL-3 | ||
Biarch: true | ||
Depends: R (>= 3.5.0) | ||
|