We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This function should be rewritten if larger files are to be supported.
stri_write_lines is most likely affected as well
This is due to how these are currently implemented, see #395 for the underlying issue (stri_encode)
The text was updated successfully, but these errors were encountered:
some code to play with:
Rscript -e ' x <- paste0(sample(letters, 100, replace = TRUE), collapse = "") lines <- rep.int(x, 1e7) writeLines(lines, "bigfile.txt") print(file.size("bigfile.txt")/1024/1024) lines2 <- stringi::stri_read_lines("bigfile.txt") stopifnot(identical(lines, lines2)) '
Sorry, something went wrong.
No branches or pull requests
This function should be rewritten if larger files are to be supported.
stri_write_lines is most likely affected as well
This is due to how these are currently implemented, see #395 for the underlying issue (stri_encode)
The text was updated successfully, but these errors were encountered: