简体   繁体   中英

JMS Vs JPPF (Java Parallel Processing) Frameworks

Can anybody share their knowledge on JMS & JPPF framework? ( eg. Which one is best for certain requirement, difference between these two frameworks ? )

Thanks in advance. Regards.

JMS is for asynchronous communication. eg EMAIL, the sender is decoupled from the receiver

JPPF is basically an approach in which a task is split into sub-tasks so that the can be processed in parallel.

JMS/JPPF can be used together eg you have a long running task refactor step 1. introduce JMS(eg MDB) so that you can fire and do not have to wait for the task to complete refactor step 2. the time taken for task to complete based on above refactoring does not change, so you could in fact use JPPF approach say with AsynchBeans etc to process the task in parallel.

HTH

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM