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
Consider whether it's possible to implement a pointer system.
For example, given the input data:
{ "a": "large_blob", "b": "small datum", }
The library could be designed to break it up into pointers to the large data, i.e. would store two records:
The state where a key is replaced with a pointer.
{ "a": { "stream_pointer": "hashOfBlob" }, "b": "small datum" }
And a pointer record:
{ "_pk": "hashOfBlob", "data": "large_blob" }
When the data is requested, the pointers would be followed to collect the data from the table.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Consider whether it's possible to implement a pointer system.
For example, given the input data:
The library could be designed to break it up into pointers to the large data, i.e. would store two records:
The state where a key is replaced with a pointer.
And a pointer record:
When the data is requested, the pointers would be followed to collect the data from the table.
The text was updated successfully, but these errors were encountered: