• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

Scalability and Performance tradeoff for Request Processing modes!!!

 
Greenhorn
Posts: 11
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Greg,
I wanted to know the Scalability and Performance
of two modes of Request Processing Synchronous &
Asynchronous.
In my application I have to process request coming from Siebel(CRM)Application hosted on IIS
by J2EE Application Server .
What you suggest in this scenario...
One more thing I want to process the request on real time and I also don't want to loose data..
Thanks in advance,
Manish
 
Author
Posts: 25
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Hi Manish,
Although it is my opinion that one should generally try to exploit asynchrony when possible, it sounds to me like your real time needs may require you to deliver a reply to each request ASAP, which suggests synchronous. But it really depends -- for example, are clients making explicit requests (i.e., clicking on buttons) or are they simply watching for page updates?
I'd rather not stake an answer in the ground until I know more details. Can you give us a better picture of what the application does?
Thanks.
 
It's just a flesh wound! Or a tiny ad:
a bit of art, as a gift, the permaculture playing cards
https://gardener-gift.com
reply
    Bookmark Topic Watch Topic
  • New Topic