> On Oct 31, 2022, at 12:21 PM, Josemi <[email protected]> wrote: > > Hello. > > I need to work with a structured data that have atributes with undefined > lenght, some of them could have GB.
Most structured storage is optimized for smaller data. And huge values in-line push all the records far apart, which is bad for cache performance. SQLite supports arbitrary size blobs up to 2^64 bytes. (Even with that it’s best to put the blobs in a separate table and join your records to it.) —Jens -- You received this message because you are subscribed to the Google Groups "Cap'n Proto" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/capnproto/1DAB34A2-38DA-4159-A46E-10744D6DED80%40mooseyard.com.
