Re: [Quickfix-developers] Optimizing QuickFIX/J
Brought to you by:
orenmnero
From: Sev Z. <se...@gm...> - 2011-08-19 17:03:04
|
This has worked well for me in .net (also reduces garbage collection): create an object pool to store the message objects. When it's time to send a message you simply take a message out of the pool, change the necessary fields and fire it off. Then, return the message to the pool. On 8/19/2011 12:36 PM, The Maverick wrote: > QuickFIX Documentation: http://www.quickfixengine.org/quickfix/doc/html/index.html > QuickFIX Support: http://www.quickfixengine.org/services.html > > Hi, > > I have around 5 worker threads on 8 core machine inside java app. They all shoot > orders when certain conditions are met through one session to the prime broker. > It seems like the quickfix/j takes a milisecond only to construct the fix > message. How do I improve this? Does anybody have any clue? > > Thanks, > > > ------------------------------------------------------------------------------ > Get a FREE DOWNLOAD! and learn more about uberSVN rich system, > user administration capabilities and model configuration. Take > the hassle out of deploying and managing Subversion and the > tools developers use with it. http://p.sf.net/sfu/wandisco-d2d-2 > _______________________________________________ > Quickfix-developers mailing list > Qui...@li... > https://lists.sourceforge.net/lists/listinfo/quickfix-developers |