Questions tagged [serialization]
The serialization tag has no summary.
12 questions
1 vote
0 answers
7 views
C++ class data persistence library
I have an application written in C++ and I have to serialize class data. I do not want to write the code myself. I am looking for an open-source library to do this. I tried SYSCPPCP from github ...
1 vote
0 answers
21 views
Typed serialization library across languages?
Suppose there's a server that processes composed data of unknown type. With JSON-schema and Protobufs, the developer converts struct/object definitions into schemas and uses the schemas on the server ...
2 votes
0 answers
27 views
Graph de/serialization library supporting many formats
I'm interested in a C++ library for reading and possibly writing graphs and digraphs from and to buffers and streams/files. In other words: A graph de/serialization library. Required features: ...
1 vote
0 answers
12 views
c# unity serializatiom deserialization
I am making some modifies in a complex c# unity project. Generally c# project generates a dll file and another unity project is using it. Serialization and deserialization operations works on Android, ...
1 vote
2 answers
119 views
What kind of library is available to serialize network traffic to disk?
I want to capture an application traffic and save that to a file so I can then load it on another programs. I need a library that can do partial serialization (don't know the technical name). I mean, ...
0 votes
1 answer
658 views
C protobuf-like framework, without malloc
Is there a Protocol Buffers implementation, or alternative, for C99, which works with statically allocated data, without the need for malloc? I.e. if all my structs have fixed length arrays: // this ...
2 votes
0 answers
207 views
Human-readable format for storing key–value pairs
I am looking for a format to write key–value pairs, where keys and values are delimited by colons. The values either: follow immediately after the colon (whitespace between the colon and the first ...
1 vote
2 answers
88 views
Transfer a list of programs to another PC
I'm looking for software that can install all my previous programs from one pc to another, with the same windows OS (7 and onwards). I don't want an image, I'm only looking for a program that can do ...
2 votes
0 answers
49 views
Efficient storage of vectors for Java
I'm writing an application in Java and would like to store the data. The data in question will be a certain number (may be a few 1000s) of vectors, and each vector would be of different size, but the ...
1 vote
0 answers
338 views
Flexible, consistent and fast Python serialization library
Specifically, is there a Python 2.7-compatible serialization library that meets the following criteria (most important criteria listed first): Has an API that allows me to customize serialization of ...
2 votes
1 answer
93 views
Python library for writing JSON piecemeal
I'm searching for a Python 2 library for serializing values as JSON that does not require the entire value to be calculated & in memory before serialization. I'd prefer something streaming/event-...
0 votes
0 answers
40 views
Like protobuf, but to text instead of binary
I want a serialization framework that generates source files to multiple programming languages from IDL with forward and backward compatibility, but it should be serialized to text, not to binary. ...