You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have found that when using serializer_json or serializer_csv, an error can be generated because the result is converted to a string in the process and remember that R only supports "The number of bytes in a character string is limited to 2^31 - 1 ~ 2*10^9". Is there any reason to generate a string and not a raw? In this case, would it be better to generate raw? For example, in the case of csv you could write a temporary file with readr::write_csv() and read the raw with readBin()
Regards,
The text was updated successfully, but these errors were encountered:
Hello,
I have found that when using
serializer_json
orserializer_csv
, an error can be generated because the result is converted to a string in the process and remember that R only supports "The number of bytes in a character string is limited to 2^31 - 1 ~ 2*10^9". Is there any reason to generate a string and not a raw? In this case, would it be better to generate raw? For example, in the case of csv you could write a temporary file withreadr::write_csv()
and read the raw withreadBin()
Regards,
The text was updated successfully, but these errors were encountered: