[protobuf] Re: Issue 682 in protobuf: Windows phone 8.1 problem

2014-12-11 Thread protobuf
Comment #2 on issue 682 by dobba...@gmail.com: Windows phone 8.1 problem https://code.google.com/p/protobuf/issues/detail?id=682 Thank you! Here is link of issue in github: https://github.com/google/protobuf/issues/132 -- You received this message because this project is configured to send all

[protobuf] Re: Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread Vladimir Agafonkin
Really awesome! One question about maps — how are they encoded in terms of packed size? How does it compare to just using a repeated message with key/value pairs? On Wednesday, December 10, 2014 11:51:01 PM UTC-5, Feng Xiao wrote: Hi all, I just published protobuf v3.0.0-alpha-1 on our

Re: [protobuf] Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread 'Feng Xiao' via Protocol Buffers
On Wed, Dec 10, 2014 at 9:19 PM, chai2010 chaishus...@gmail.com wrote: Feng Xiao, I have some questions: 1. does protobuf3 will include golang compiler? Go protobuf is in its own repository and proto3 will supported there. See: https://github.com/golang/protobuf 2. does protobuf3 have a

Re: [protobuf] Re: Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread 'Feng Xiao' via Protocol Buffers
On Thu, Dec 11, 2014 at 9:14 AM, Vladimir Agafonkin agafon...@gmail.com wrote: Really awesome! One question about maps — how are they encoded in terms of packed size? How does it compare to just using a repeated message with key/value pairs? Map fields are encoded as a repeated message

Re: [protobuf] Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread Michael Haberler
Hallo Feng, Am 11.12.2014 um 05:51 schrieb Feng Xiao xiaof...@google.com: Hi all, I just published protobuf v3.0.0-alpha-1 on our github site: https://github.com/google/protobuf/releases/tag/v3.0.0-alpha-1 a question on structuring web applications further downstream: you mention

Re: [protobuf] Re: Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread Vladimir Agafonkin
Oh, bummer. I was hoping for a more compact map packing. Currently I'm using the following to do this: repeated uint32 properties = 1; // key/value index pairs repeated string keys = 2; // unique keys repeated string values = 3; // unique values On Thursday, December 11, 2014 2:24:09 PM UTC-5,

Re: [protobuf] Protobuf Buffers v3.0.0-alpha-1

2014-12-11 Thread 'Feng Xiao' via Protocol Buffers
On Thu, Dec 11, 2014 at 12:02 PM, Michael Haberler mai...@mah.priv.at wrote: Hallo Feng, Am 11.12.2014 um 05:51 schrieb Feng Xiao xiaof...@google.com: Hi all, I just published protobuf v3.0.0-alpha-1 on our github site: https://github.com/google/protobuf/releases/tag/v3.0.0-alpha-1