Skip to main content

Questions tagged [serialization]

1 vote
0 answers
7 views

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 ...
George TDN's user avatar
1 vote
0 answers
21 views

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 ...
anon2328's user avatar
  • 111
2 votes
0 answers
27 views

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: ...
einpoklum's user avatar
  • 3,498
1 vote
0 answers
12 views

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, ...
user51562's user avatar
1 vote
2 answers
119 views

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, ...
Gonzalo Fernandez's user avatar
0 votes
1 answer
658 views

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 ...
Lou's user avatar
  • 123
2 votes
0 answers
207 views

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 ...
Guildenstern's user avatar
1 vote
2 answers
88 views

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 ...
Andy K's user avatar
  • 137
2 votes
0 answers
49 views

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 ...
user2759511's user avatar
1 vote
0 answers
338 views

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 ...
mchen's user avatar
  • 111
2 votes
1 answer
93 views

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-...
jwodder's user avatar
  • 155
0 votes
0 answers
40 views

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. ...
Vi.'s user avatar
  • 1,045