[jira] [Commented] (PROTON-800) [Windows C] Reactor test times out

2015-01-14 Thread Rafael H. Schloming (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-800?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14277569#comment-14277569 ] Rafael H. Schloming commented on PROTON-800: I wold take a look at commit

Re: [java] Message codec improvements

2015-01-14 Thread Rajith Muditha Attapattu
Rafi, I had a closer look at the code, put it on trunk and ran your benchmark. I see quite an improvement with respect to writing lists, maps and strings. Simply put the writeList and writeMap methods in the old encorder is about ~10 times slower than the new encorder. If I run with a

[jira] [Commented] (PROTON-800) [Windows C] Reactor test times out

2015-01-14 Thread Cliff Jansen (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-800?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanelfocusedCommentId=14278397#comment-14278397 ] Cliff Jansen commented on PROTON-800: - The memory fault in the stack trace occurs from

[jira] [Resolved] (PROTON-794) [Windows] Visual Studio 2008 compile error

2015-01-14 Thread Chuck Rolke (JIRA)
[ https://issues.apache.org/jira/browse/PROTON-794?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ] Chuck Rolke resolved PROTON-794. Resolution: Fixed Fix Version/s: 0.9 Fixed at Commit efa5eab [Windows] Visual Studio 2008

[jira] [Created] (PROTON-800) [Windows C] Reactor test times out

2015-01-14 Thread Chuck Rolke (JIRA)
Chuck Rolke created PROTON-800: -- Summary: [Windows C] Reactor test times out Key: PROTON-800 URL: https://issues.apache.org/jira/browse/PROTON-800 Project: Qpid Proton Issue Type: Bug

Re: c reactor / gordon's examples

2015-01-14 Thread Darryl L. Pierce
On Wed, Jan 14, 2015 at 08:28:50AM -0500, Rafael Schloming wrote: snip import sys reactor = Reactor(Program()) reactor.acceptor(0.0.0.0, 5672) reactor.connection(Client(localhost:5672, sys.argv[1:])) reactor.run() I like the simplicity of how a simple app can be setup. The above can be

c reactor / gordon's examples

2015-01-14 Thread Rafael Schloming
Hi Everyone, I've been doing some work on a C reactor API for proton that is intended to fit both alongside and underneath what gordon has been doing in pure python. I have several goals with this work. - Simplify/enable a reactive style of programming in C that is similar to what gordon has