[protobuf] Re: writing a rpc plugin

2010-08-08 Thread Yegor
and error :) I'll be watching this thread for responses. Yegor On Aug 8, 12:13 am, Peter wrote: > Hi folks, >    I am new to protocol buffer, but interested in writing a customized > Java rpc lib. The new version recommend to write it in a plugin. > However, I cannot find

Re: how to use protobuf with Google App Engine?

2009-07-03 Thread Yegor
The hack (http://code.google.com/p/protobuf-gae-hack) seems still valid. Cheers, Yegor On Jul 2, 7:46 pm, Dan wrote: > Hello- > I'm working with GAE and ran into this error when trying to use > protocol buffers: > > from google.protobuf import descriptor > ImportError: No module na

Re: Lots of changes integrated, 2.1.0 release coming soon

2009-04-27 Thread Yegor
Hi, Kenton, In the Python version there are now two versions of InputStream, one buffer-based, the other one array-based, for compatibility with App Engine-like environments. Do you know how big the performance penalty is for using array-based InputStream in protobuf context? Thanks, Yegor On

Solution: Protocol Buffers in Google App Engine applications

2009-04-04 Thread Yegor
, bug reports, etc. Thanks, Yegor --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Protocol Buffers" group. To post to this group, send email to protobuf@googlegroups.com To unsubscribe from this group, sen

Re: Followup: EBNF grammar for .proto files

2008-09-23 Thread Yegor
; fragment HEX_INT : ('0') ('x' | 'X') ('A'..'F' | 'a'..'f' | DIGIT)+ ; fragment OCT_INT : ('0') ('0'..'7')+ ; // allow_f_after_float_ is disabled by defaul

Followup: EBNF grammar for .proto files

2008-09-21 Thread Yegor
Hi, everyone, I am following up on the discussion about the EBNF grammar for .proto files: http://groups.google.com/group/protobuf/browse_thread/thread/1cccfc624cd612da I am now trying port this grammar to ANTLR format and make it generate the lexers and parsers, but so far no luck. Does anyon