Tagged Questions
An independent implementation of Google's protobuf binary serialization format, protobuf-net approaches the problem-space with common .NET coding styles, but retaining the high performance, dense output and cross-platform interoperability. In particular (compared to most implementations), it allows: both code-first and contract-first development mutable objects inheritance Oh, and it is pretty darned fast too.
24
votes
1answer
1k views
How does protobuf-net achieve respectable performance?
I want to understand why the protocol buffers solution for .NET developed by Marc Gravell is as fast as it is.
I can understand how the original Google solution achieved its performance: it ...
11
votes
4answers
2k views
How to choose between protobuf-csharp-port and protobuf-net
I've recently had to look for a C# porting of the Protocol Buffers library originally developped by Google. And guess what, I found two projects owned both by two very well known persons here: ...
11
votes
1answer
909 views
Using Protobuf-net, I suddenly got an exception about an unknown wire-type
(this is a re-post of a question that I saw in my RSS, but which was deleted by the OP. I've re-added it because I've seen this question asked several times in different places; wiki for "good form")
...
9
votes
3answers
250 views
Options for RPC in Mono? (WCF Alternatives)
I have had the opportunity to spend a great number of hours trying to use WCF in mono. It is simply too poorly implemented at this point to be put into a production environment, for anything beyond ...
9
votes
2answers
405 views
Using a custom WCF serializer in Silverlight
In "full" .NET it is pretty easy to swap out the serializer - either in configuration, or via custom attributes. However, I want to do something similar in Silverlight's WCF - i.e. provide a different ...
9
votes
2answers
455 views
Generate C# from proto files and vice versa interpreting custom options
I'm using protobuf-net, and I'm trying to:
Generate a C# class from a .proto file
Generate a .proto file from a C# class
That's pretty easy using respectively:
protogen.exe tool
...
9
votes
4answers
4k views
Dynamic Object Serialization
I tried to serialize a DynamicObject class with BinaryFormatter, but:
Output file is too big, not exactly wire-friendly
Circular References not handled (stuck while serializing)
Since serializing ...
8
votes
1answer
257 views
Adding custom ValueProviderFactories to ASP.NET MVC3?
I was looking to try and add a Protobuf ValueProviderFactory to MVC3 so that I could pick out the MIME type and deserialize the raw data into objects for action parameters. I could also use this to ...
8
votes
2answers
5k views
Deserialize unknown type with protobuf-net
I have 2 networked apps that should send serialized protobuf-net messages to each other. I can serialize the objects and send them, however, I cannot figure out how to deserialize the received bytes.
...
7
votes
1answer
146 views
Serializing with ProtoBuf.NET without tagging members
I've read somewhere a comment by the author of ProtoBuf.NET that:
There are options to automatically infer the numbers, but that is brittle and not recommended. Only use this if you know you never ...
7
votes
2answers
211 views
How to compare two .NET object graphs for differences?
In our Client/Server Application we've been using BinaryFormatter for the serialization process.
For performance reasons we are trying to migrate to protobuf-net ( ...
7
votes
4answers
9k views
Protocol buffers in C# projects using protobuf-net - best practices for code generation
I'm trying to use protobuf in a C# project, using protobuf-net, and am wondering what is the best way to organise this into a Visual Studio project structure.
When manually using the protogen tool to ...
6
votes
1answer
165 views
protobuf-net v2 and Monotouch : How does it mix?
I have been trying to use protobuf-net with MonoTouch but I have no idea how, and despite having heard that it is possible, I haven't been able to find any tutorial or any example that actually work.
...
6
votes
1answer
688 views
protobuf-net: Serializing an empty List
we have some problems with serializing an empty list.
here some code in .NET using CF 2.0
//Generating the protobuf-msg
ProtoBufMessage msg = new ProtoBufMessage();
msg.list = new ...
6
votes
1answer
2k views
What does the ProtoInclude attribute mean (in protobuf-net)
In the ProtoBuf-Net implementation, what does the ProtoInclude attribute mean, and what does it do?
An example would be appreciated.
I saw it in this post and I'm not sure what it does. The example ...
5
votes
1answer
93 views
Protobuf.net Memory Usage
Heyup. Long time lover of protobuf.net.
Quick question though. I have a highly multithreaded C# application which is deserialising perhaps 100 objects / second, amounting to about 50MB/sec. I am ...
5
votes
2answers
180 views
Serialize List<object> (where the objects are supported primitives) in Protobuf.NET?
How to I serialize an object like this with protobuf-net:
public class MyObject{
public string Key {get; set;}
public List<Object> Values {get; set;}
}
When I try to serialize this with ...
5
votes
1answer
210 views
Is of <T> allowed in a run-time ProtoBuf-net model?
I am using version 2 of ProtoBuf-net, and currently I'm geting the error "Unable to determine member: A"
Is it possible to create a run-time model for Protobuf-net when we use ClassOfType<T>? If ...
5
votes
2answers
327 views
Google Protocol Buffers Serialization hangs writing 1GB+ data
I am serializing a large data set using protocol buffer serialization. When my data set contains 400000 custom objects of combined size around 1 GB, serialization returns in 3~4 seconds. But when my ...
5
votes
1answer
302 views
protobuf-net serializing object graph
If I have object A and B both contain some field serialized field F, and both point to the same serializable object C. Does protobuf-net serialize by reference or serialize by value? When the object ...
5
votes
1answer
451 views
Serializing an IEnumerable trough WCF using Protobuf-net and Monotouch for IOS
I'm trying to code a WCF service on Monotouch/Monodevelop for IOS. I was using standard attributes like [DataMember]/[DataContract] for my serializable object and [ServiceContract]/[OperationContract] ...
5
votes
1answer
558 views
Deserializing a type at the current stream position with protobuf-net
I'm serializing several objects into a single stream, but when i try to read them back, i can't seem to get anything but the last object:
ProtoBuf.Serializer.Serialize(stream, postA1);
...
5
votes
7answers
7k views
XML vs Binary performance for Serialization/Deserialization
I'm working on a compact framework application and need to boost performance. The app currently works offline by serializing objects to XML and storing them in a database. Using a profiling tool I ...
4
votes
2answers
57 views
Protocol buffers, getting C# to talk to C++ : type issues and schema issues
I am about to embark on a project to connect two programs, one in c#, and one in c++. I already have a working c# program, which is able to talk to other versions of itself. Before I start with the ...
4
votes
2answers
77 views
How to return Specific Class types without a large Select/Switch
I'm building a series of classes in an attempt to reduce the manual coding of specific class types from the mainline code.
Whichever way I look there is always somewhere that requires manual coding ...
4
votes
1answer
102 views
protobuf-net message serialized size property
We are using protobuf-net for serialization and deserialization of messages in an application whose public protocol is based on Google Protocol Buffers. The library is excellent and covers our all ...
4
votes
1answer
84 views
What is the holdup on the first WCF call via the serviceProxy?
There are a lot of similar questions, but they all deal with server-side slowness - this is all about client-side issues.
1st call takes 900ms.
2nd call takes 20 ms.
I narrowed the slowness on the ...
4
votes
1answer
368 views
serializing a Dictionary<string,object> in ProtoBuf-net fails
(NOTE: Dictionary where T is some ProtoContract / ProtoMembered class works fine. ) This issue only happened for me with type object.
I was trying to serialize a dictionary of Dictionary working. ...
4
votes
1answer
174 views
In Protobuf-net, is it possible to serialize non-decorated classes?
To Serialize a class with protobuf-net, you neet to provide the class and property attributes [ProtoContract] and [ProtoMember(n)] -- where n is 1,2,3,..,etc
Appart from cloning to a mirror image of ...
4
votes
1answer
545 views
protobuf: read a message in C++ from C#
I am going to read messages that are stored consecutively in socket in C++ client that are sent from a C# server. I expect that I can read the size of a message like that:
google::protobuf::uint32 m;
...
4
votes
1answer
171 views
protobuf-net and wcf web apis
I haven't used wcf web api yet. Glenn Block's demo at MIX11 looked real nice so I will certainly dig into that.
In the meantime, I'm wondering how it could be used together with protocol buffers ...
4
votes
2answers
338 views
protobuf-net class with dictionary property
Given the following classes,
public static void Test()
{
var bigDictionary = new Dictionary<string, TestClass>();
bigDictionary.Add("entry1", new TestClass());
bigDictionary.Add("entry2", ...
4
votes
4answers
767 views
Get fast random access to binary files, but also sequential when needed. How to layout?
I have about 1 billion datasets that have a DatasetKey and each has between 1 and 50 000 000 child entries (some objects), average is about 100, but there are many fat tails.
Once the data is ...
4
votes
3answers
418 views
For which scenarios is protobuf-net not appropriate?
We have been using BinarySerialization with our C# app, but the size and complexity of the classes which need to be serialized results in sloooooow (de)serialization, and large files.
We suspect ...
4
votes
1answer
366 views
protobuf-net [de]serializing across assembly boundaries
I have a base class in one assembly and a large number of generated classes in another that inherit from the base class. Using protobuf-net (r282) to serialize a list of the base type fails when ...
3
votes
1answer
63 views
Using protobuf-net, is it possible to deserialize a message without allocating memory?
I have a C# application that needs to deserialize many thousands of protobuf messages per second. In the interest of avoiding unnecessary garbage collections, I'm wondering if there is a way to use ...
3
votes
3answers
79 views
Proto-buf serialization with Obfuscation
I am looking for some guidance as to what is going on when using proto-buf net with obfuscation (Dotfuscator). One half of the project is a DLL and the other is an EXE elsewhere and using proto-buf ...
3
votes
1answer
193 views
Inheritance in Protobuf-net: ProtoInclude and compatibility
As described in this post, we can use ProtoInclude attribute to manage class hierarchy serialization. And if we use just protobuf-net, it works quite fine both directions. But problem occurs when we ...
3
votes
1answer
93 views
Using the same model to deserialize in parallel (efficiently)
I'm trying to read multiple files that have been serialized with ProtoBuf.NET using .NET Tasks like this:
public static ResultsDump Amalgamate(RuntimeTypeModel model, IEnumerable<string> files)
...
3
votes
1answer
125 views
protobuf-net v2 r450 inheritance
protobuf-net v2 r450 inheritance
Hoping someone can help point me in the right direction with protobuf-net. All the sample code I can find seems to indicate what I'm trying should be possible.
...
3
votes
1answer
99 views
Alternative to protobuf-net - size and time efficient serializer to work with objects graph
Google protobuf is great protocol to serialize objects efficient, but it only supports serialization of trees, not graphs (lack of full Object Reference Tracking).
There are few implementation of ...
3
votes
2answers
81 views
How to change a ProtoMember index for members in a type using Protobuf.net?
I have a type like this:
[ProtoContract]
class Person {
[ProtoMember(1)]
public string Name {get;set:}
[ProtoMember(2)]
public int Id {get;set;}
}
Later I realized I need another ...
3
votes
1answer
61 views
protobuf-net How to avoid crashing when working with Indexed Properties
I'm trying to integrate the awesome protobuf-net into an existing codebase, but am encountering a crash when it tries to handle a custom type. A small demonstration is below: it will throw an ...
3
votes
1answer
132 views
Limiting protobuf-net inheritance “tree”
Going on with my quest to bend protobuf-net to my own will..
I've seen a few questions around SO on how to add sub-classes dynamically
for the serializer to be able to encode the sub-class.., like ...
3
votes
1answer
79 views
Protobuf-net in WP7 throws FieldAccessExceptions
I have a very simple class that I'm trying to serialize:
[ProtoContract]
public class SettingStore {
public event EventHandler ContentsChanged;
[ProtoMember(1)]
private ...
3
votes
2answers
119 views
Protobuf.net Exception - Timeout while inspecting metadata
I am sometimes receiving the following exception when attempting to deserialise an object using protobuf.net. I'm surprised as I never have more than a single thread deserialising the same object at ...
3
votes
2answers
193 views
ProtoBuf-net AsReference require public constructor in Activator.CreateInstance?
While working on 2 of my classes that looks like this (minimal)
using System;
using System.Collections.Generic;
using System.Collections;
using System.ComponentModel;
using System.Drawing;
using ...
3
votes
1answer
401 views
How to use protobuf-net with immutable value types?
Suppose I have an immutable value type like this:
[Serializable]
[DataContract]
public struct MyValueType : ISerializable
{
private readonly int _x;
private readonly int _z;
public MyValueType(int ...
3
votes
1answer
167 views
Protobuf Inheritance and Generics
I am attempting to use ProtoBuf net to serialize an object tree with the classes in the following format:
[ProtoContract]
class MySpecialCollectionList<T> : ...
3
votes
1answer
181 views
iPad + WCF duplex + protobuf
I'm about to start building an iPad client for an existing WCF service that currently communicates via Duplex channel callbacks and pushes lightweight data transfer objects to the client at regular ...