Best practices for storing changing sizes of (text) data on documents, considering RIDs? #1660
Closed
SevorisDoe
started this conversation in
General
Replies: 1 comment 2 replies
-
If I understood your question, records larger than a page (or don't fit the space left in the page), are split and allocated in multiple pages with a linked list pointer structure. It's all transparent to the user. |
Beta Was this translation helpful? Give feedback.
2 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I think this is a simple thing really, but I am unclear about the behavior here, given that RIDs cannot change without destroying associations recorded elsewhere: assuming I am storing various bits of text data and other metadata on documents in a bucket, and I rewrite an existing documents so that the data would bump into the start of a subsequent allocated record of the page - what's the behavior here? Does the transaction fail? Is the rest of the data implicitly written to a new RID allocated further down the file? Should one maybe use referenced documents and use larger record spacings per pages to avoid issues in advance?
Beta Was this translation helpful? Give feedback.
All reactions