Tagged Questions
0
votes
4answers
136 views
loading (deserializing) _quickly_ 2MB of Data in Android on Application Startup
I need to load around 2MB of data quickly on startup of my Android application.
I really need all this data in memory, so something like SQLite etc. is not an alternative.
The data consists of about ...
2
votes
0answers
211 views
Inefficient transmission of protobuf-net serialized messages
I have a WCF service hosted on Windows Server 2008/IIS exposing a nettcpbinding endpoint using the DataContractSerializer. This service is consumed by a Windows Forms application, which is suffering ...
1
vote
1answer
109 views
destroying a protocol buffer message in debug mode is almost 500 times slower than in release mode
Use the following code with your own timing code around the call to delete msg in main(). When running in debug mode, it is taking 473 times as long, on average, as when running without debugging. ...
0
votes
1answer
117 views
Why doesn't MPI supply serialization interface?
MPI is Message Passing Interface, but when you want to send a object you must serialization before MPI_Send.
MPI exposes the communication function to developers and give lots of interface to ...
7
votes
3answers
700 views
using swig to bind google protocol buffers
I'm writing python program that needs to process a lot of small but complex protobuf-encoded messages. I tried to use the Python implementation of protocol buffers, which is written in pure python, ...
1
vote
3answers
155 views
Edit several hundred Protocol Buffer serialized messages read from database
For an operation on my application, I need to read from database & then edit several hundred Protocol Buffer serialized messages. In each PB message, there are actually 4 int fields and one ...
4
votes
5answers
315 views
Serializer is not using 100% CPU
Currently I'm running a few simple serialization tests. A few thousand objects are serilaized and deserialized within a loop. I noticed that this test is not using 100% cpu. Could anyone explain why?
...
4
votes
1answer
336 views
Performance penalty of getSerializedSize() in Protocol Buffers
Is there a performance penalty for calling getSerializedSize() on a GPB message before serializing the message with writeTo(OutputStream)?
I need to be able to know the size of a message before ...
0
votes
1answer
2k views
protocol buffers .net (protobuf-net) 10x slower that xml serializer. how come?
I noticed that serialization as well des deserialization takes 10x as lang with protobuf-net compared to XmlSerializer. the output files however are much smaller. i find this confusing because ...
41
votes
8answers
11k views
boost serialization vs google protocol buffers?
Does anyone with experience with these libraries have any comment on which one they preferred? Were there any performance differences or difficulties in using?
11
votes
2answers
2k views
How does Google Protocol Buffers compare to ASN.1
What are the most noticable differences between Google Protocol Buffers and ASN.1 (with PER-encoding)? For my project the most imporant issue is the size of the serialized data. Has anyone done any ...
16
votes
8answers
5k views
C++ Serialization Performance
I'm building a distributed C++ application that needs to do lots of serialization and deserialization of simple data structures that's being passed between different processes and computers.
I'm not ...
32
votes
7answers
29k views
Performance comparison of Thrift, Protocol Buffers, JSON, EJB, other?
We're looking into transport/protocol solutions and were about to do various performance tests, so I thought I'd check with the community if they've already done this:
Has anyone done server ...