Posted 21 October 2014 - 08:35 AM
I wrote my own serialization library based on Python's pickle library. After some thought, I wanted to take it further and add functionality to save modifications directly to file without having to rewrite the entire data set (especially large sets of thousands of objects). My plan was to analyze for changes and if the new data fits, overwrite the existing data. If not, the original will be garbaged and the new serialized data appended to the end.
My problem is that this requires extensive random access and without seek and read-write modes, I won't be able to utilize this feature in CC. Does anybody have any workarounds aside from only appending changes?
My problem is that this requires extensive random access and without seek and read-write modes, I won't be able to utilize this feature in CC. Does anybody have any workarounds aside from only appending changes?