Object.readArchive limits?

Are there limitations on the size of objects that Object.readArchive can interpret? I seem to be having some trouble recalling a fairly long string and I’m wondering I’m missing something.

Thanks!

There is a limit on the length of a quoted string literal. In my JITModular quark, to recover a long string, I needed to write it into the file as:

[
    "... long chunk 1, 8192 characters or such ...",
    "... long chunk 2...",
    "... long chunk 3..."
].join

I’m pretty sure writeArchive isn’t doing this, though.

hjh

1 Like