Re: SEDA implementation

2010-04-09 Thread vcheruvu
Thanks for quick reply. After reading the SEDA component source and reading the article (http://www.eecs.harvard.edu/~mdw/papers/seda-sosp01.pdf) thoroughly, gave me some understanding about Staging concept. Nice work Camel team, it is quiet easy to understand Seda code in Camel.. -- View this

Re: SEDA implementation

2010-04-07 Thread Claus Ibsen
Hi Yeah that SEDA paper is famous http://en.wikipedia.org/wiki/Staged_event-driven_architecture Its however written many years ago, when Java was not as evolved as today. Back in those days C++ was faster than Java. And today the story is different. Camel SEDA uses the JDK concurrency API and is

Re: SEDA implementation

2010-04-07 Thread Willem Jiang
Hi Current camel-seda component is based on the queue with a thread pool to consume and produce the message. It's much like the SEDA that you found. But after went through the whole story, the write had some theories which made me think the research papers were doing the different things as we